From 53a6f932032a30625358414ae0f77790656ccaca Mon Sep 17 00:00:00 2001 From: hasso Date: Thu, 15 Sep 2005 06:50:53 +0000 Subject: [PATCH] * vtysh.c: Fix warning by casting rl_bind_key 2. argument correctly. * extract.pl.in: Fix warning - add isisd/topology to the includes. --- vtysh/ChangeLog | 5 +++++ vtysh/extract.pl.in | 2 +- vtysh/vtysh.c | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/vtysh/ChangeLog b/vtysh/ChangeLog index b0c135446..9e4e40ad5 100644 --- a/vtysh/ChangeLog +++ b/vtysh/ChangeLog @@ -1,3 +1,8 @@ +2005-09-15 Hasso Tepper + + * vtysh.c: Fix warning by casting rl_bind_key 2. argument correctly. + * extract.pl.in: Fix warning - add isisd/topology to the includes. + 2005-08-22 Hugo Santos * vtysh.c: Add support for BGP_IPV6M_NODE diff --git a/vtysh/extract.pl.in b/vtysh/extract.pl.in index bab9b14f3..98a9ddde8 100755 --- a/vtysh/extract.pl.in +++ b/vtysh/extract.pl.in @@ -62,7 +62,7 @@ $ignore{'"show history"'} = "ignore"; foreach (@ARGV) { $file = $_; - open (FH, "cpp -DHAVE_CONFIG_H -DVTYSH_EXTRACT_PL -DHAVE_IPV6 -I@top_builddir@ -I@srcdir@/ -I@srcdir@/.. -I@top_srcdir@/lib @SNMP_INCLUDES@ $file |"); + open (FH, "cpp -DHAVE_CONFIG_H -DVTYSH_EXTRACT_PL -DHAVE_IPV6 -I@top_builddir@ -I@srcdir@/ -I@srcdir@/.. -I@top_srcdir@/lib -I@top_srcdir@/isisd/topology @SNMP_INCLUDES@ $file |"); local $/; undef $/; $line = ; close (FH); diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index 13fd9530b..fa48a44ea 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -2099,7 +2099,7 @@ void vtysh_readline_init (void) { /* readline related settings. */ - rl_bind_key ('?', vtysh_rl_describe); + rl_bind_key ('?', (Function *) vtysh_rl_describe); rl_completion_entry_function = vtysh_completion_entry_function; rl_attempted_completion_function = (CPPFunction *)new_completion; /* do not append space after completion. It will be appended -- 2.39.2