aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2022-07-16 11:48:30 +0000
committerGordon Bergling <gbe@FreeBSD.org>2022-07-27 15:54:59 +0000
commitd3282d0c550cc3f921f6cb223534c11e33a7e3ad (patch)
tree84e99db73447816eb9c5d43975d2a55b85f2cd77
parent1c759bd4deecd759dedc170fca735fd4cbc385a0 (diff)
downloadsrc-d3282d0c550cc3f921f6cb223534c11e33a7e3ad.tar.gz
src-d3282d0c550cc3f921f6cb223534c11e33a7e3ad.zip
pfctl(8): Fix a typo in a source code comment
- s/bufer/buffer/ (cherry picked from commit a101b1b7f24aaabed03b73f2a4dd7acb41bb7a93)
-rw-r--r--sbin/pfctl/pfctl_altq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/pfctl/pfctl_altq.c b/sbin/pfctl/pfctl_altq.c
index 8067b0598361..f88a773d005d 100644
--- a/sbin/pfctl/pfctl_altq.c
+++ b/sbin/pfctl/pfctl_altq.c
@@ -1234,7 +1234,7 @@ char *
rate2str(double rate)
{
char *buf;
- static char r2sbuf[R2S_BUFS][RATESTR_MAX]; /* ring bufer */
+ static char r2sbuf[R2S_BUFS][RATESTR_MAX]; /* ring buffer */
static int idx = 0;
int i;
static const char unit[] = " KMG";