summaryrefslogtreecommitdiffstats
path: root/main/quagga/quagga-readline-6.3.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/quagga/quagga-readline-6.3.patch')
-rw-r--r--main/quagga/quagga-readline-6.3.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/main/quagga/quagga-readline-6.3.patch b/main/quagga/quagga-readline-6.3.patch
new file mode 100644
index 000000000..41ba831ac
--- /dev/null
+++ b/main/quagga/quagga-readline-6.3.patch
@@ -0,0 +1,14 @@
+--- quagga-0.99.22.4.orig/vtysh/vtysh.c
++++ quagga-0.99.22.4/vtysh/vtysh.c
+@@ -2211,9 +2211,9 @@
+ vtysh_readline_init (void)
+ {
+ /* readline related settings. */
+- rl_bind_key ('?', (Function *) vtysh_rl_describe);
++ rl_bind_key ('?', (rl_command_func_t *) vtysh_rl_describe);
+ rl_completion_entry_function = vtysh_completion_entry_function;
+- rl_attempted_completion_function = (CPPFunction *)new_completion;
++ rl_attempted_completion_function = (rl_completion_func_t *) new_completion;
+ /* do not append space after completion. It will be appended
+ * in new_completion() function explicitly. */
+ rl_completion_append_character = '\0';