projects
/
l2tpns.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
set MTU on tunnel interface so the kernel will re-fragment large packets to within MRU
[l2tpns.git]
/
cli.c
diff --git
a/cli.c
b/cli.c
index
80b92a9
..
34038ef
100644
(file)
--- a/
cli.c
+++ b/
cli.c
@@
-2,9
+2,10
@@
// vim: sw=8 ts=8
char const *cvs_name = "$Name: $";
// vim: sw=8 ts=8
char const *cvs_name = "$Name: $";
-char const *cvs_id_cli = "$Id: cli.c,v 1.6
6 2005/09/01 06:59:06
bodea Exp $";
+char const *cvs_id_cli = "$Id: cli.c,v 1.6
8 2005/11/14 20:19:08
bodea Exp $";
#include <stdio.h>
#include <stdio.h>
+#include <stddef.h>
#include <stdarg.h>
#include <unistd.h>
#include <sys/file.h>
#include <stdarg.h>
#include <unistd.h>
#include <sys/file.h>
@@
-2884,7
+2885,7
@@
static int cmd_ip_access_list_rule(struct cli_def *cli, char *command, char **ar
return CLI_OK;
}
return CLI_OK;
}
- if (!memcmp(&ip_filters[filt].rules[i], rule,
sizeof(*rule
)))
+ if (!memcmp(&ip_filters[filt].rules[i], rule,
offsetof(ip_filter_rulet, counter
)))
return CLI_OK;
}
return CLI_OK;
}
@@
-3068,7
+3069,7
@@
static int cmd_show_access_list(struct cli_def *cli, char *command, char **argv,
{
char const *r = show_access_list_rule(ip_filters[f].extended, rules);
if (rules->counter)
{
char const *r = show_access_list_rule(ip_filters[f].extended, rules);
if (rules->counter)
- cli_print(cli, "%s (%
d
match%s)", r,
+ cli_print(cli, "%s (%
u
match%s)", r,
rules->counter, rules->counter > 1 ? "es" : "");
else
cli_print(cli, "%s", r);
rules->counter, rules->counter > 1 ? "es" : "");
else
cli_print(cli, "%s", r);