From 317d0d43ba47a71441696aff76d03828f3ecf033 Mon Sep 17 00:00:00 2001 From: paul Date: Tue, 8 Mar 2005 15:16:57 +0000 Subject: 2005-03-08 Paul Jakma * command.c: (banner_motd_file_cmd) use XSTRDUP/XFREE * vty.c: (vty_hello) suggestions from Andrew, read by line and stub out trailling non-printable characters on each line thus allowing us to specify VTY_NEWLINE to vty_out. --- lib/command.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/command.c') diff --git a/lib/command.c b/lib/command.c index 1df58f13..b035d272 100644 --- a/lib/command.c +++ b/lib/command.c @@ -3409,8 +3409,10 @@ DEFUN (banner_motd_file, "Banner from a file\n" "Filename\n") { - if (host.motdfile) free(host.motdfile); - host.motdfile = strdup(argv[0]); + if (host.motdfile) + XFREE (MTYPE_TMP, host.motdfile); + host.motdfile = XSTRDUP (MTYPE_TMP, argv[0]); + return CMD_SUCCESS; } -- cgit v1.2.3