projects
/
l2tpns.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix checksum recalc
[l2tpns.git]
/
cli.c
diff --git
a/cli.c
b/cli.c
index
8100253
..
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
4 2005/07/31 10:04:09
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>
@@
-412,7
+413,7
@@
static int cmd_show_session(struct cli_def *cli, char *command, char **argv, int
switch (session[s].ppp.phase)
{
case Establish:
switch (session[s].ppp.phase)
{
case Establish:
- cli_print(cli, "\tLCP state:\t%s", ppp_state(session[s].ppp.lcp));
+ cli_print(cli, "\t
LCP state:\t%s", ppp_state(session[s].ppp.lcp));
break;
case Authenticate:
break;
case Authenticate:
@@
-1938,7
+1939,7
@@
int regular_stuff(struct cli_def *cli)
if (!show) continue;
if (!(p = strchr(m, '\n')))
if (!show) continue;
if (!(p = strchr(m, '\n')))
- p = m + strlen(
p
);
+ p = m + strlen(
m
);
cli_error(cli, "\r%s-%u-%u %.*s",
debug_levels[(int)ringbuffer->buffer[i].level],
cli_error(cli, "\r%s-%u-%u %.*s",
debug_levels[(int)ringbuffer->buffer[i].level],
@@
-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);