Skip to content

Commit

Permalink
vty_cli: fix telnet backchar on x86
Browse files Browse the repository at this point in the history
Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>
  • Loading branch information
fabbione committed Oct 28, 2010
1 parent dccdf70 commit 17ff842
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vty_cli.c
Expand Up @@ -18,7 +18,7 @@
#define VTY_ESCAPE 2
#define VTY_EXT_ESCAPE 3

static const char telnet_backward_char[] = { 0x08 };
static const char telnet_backward_char[] = { 0x08, 0x0 };
static const char telnet_newline[] = { '\n', '\r', 0x0 };

static void knet_vty_reset_buf(struct knet_vty *vty)
Expand Down

0 comments on commit 17ff842

Please sign in to comment.