summaryrefslogtreecommitdiffstats
path: root/iptables
diff options
context:
space:
mode:
authorlaforge <laforge>2001-01-30 11:17:26 +0000
committerlaforge <laforge>2001-01-30 11:17:26 +0000
commit7d8b2dd7d98d4fc44109d998c583308b1cb4f869 (patch)
tree0a6f11d828a7c786a5fde58a09b329cd72320b00 /iptables
parentc454ecd4f7644cd7635745a1c055d8e9c1deeacc (diff)
typo fixes
Diffstat (limited to 'iptables')
-rw-r--r--iptables/libipt_ULOG.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/iptables/libipt_ULOG.c b/iptables/libipt_ULOG.c
index dbfb849..d1b3413 100644
--- a/iptables/libipt_ULOG.c
+++ b/iptables/libipt_ULOG.c
@@ -6,7 +6,7 @@
*
* This software is released under the terms of GNU GPL
*
- * $Id: libipt_ULOG.c,v 1.4 2000/09/22 06:57:16 laforge Exp $
+ * $Id: libipt_ULOG.c,v 1.5 2001/01/30 09:30:11 laforge Exp $
*/
#include <stdio.h>
#include <netdb.h>
@@ -40,7 +40,7 @@ static void help(void)
printf("ULOG v%s options:\n"
" --ulog-nlgroup nlgroup NETLINK group used for logging\n"
" --ulog-cprange size Bytes of each packet to be passed\n"
- " --ulog-qthreshold Threshold of in-kernel queue\n",
+ " --ulog-qthreshold Threshold of in-kernel queue\n"
" --ulog-prefix prefix Prefix log messages with this prefix.\n\n",
NETFILTER_VERSION);
}
@@ -133,7 +133,7 @@ static int parse(int c, char **argv, int invert, unsigned int *flags,
if (atoi(optarg) < 1)
exit_error(PARAMETER_PROBLEM,
"Negative or zero queue threshold ?");
- if (atoi(optarg) > ULOGD_MAX_QLEN)
+ if (atoi(optarg) > ULOG_MAX_QLEN)
exit_error(PARAMETER_PROBLEM,
"Maximum queue length exceeded");
loginfo->qthreshold = atoi(optarg);
@@ -166,7 +166,7 @@ static void save(const struct ipt_ip *ip,
if (loginfo->copy_range)
printf("--ulog-cprange %d ", loginfo->copy_range);
- if (loginfo->qthreshold != ULOGD_DEFAULT_QTHRESHOLD)
+ if (loginfo->qthreshold != ULOG_DEFAULT_QTHRESHOLD)
printf("--ulog-qthreshold %d ", loginfo->qthreshold);
}