From 2e228fc2af9df41517163fd6575ff509c33096ad Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Sat, 11 Sep 2010 13:41:41 +0800 Subject: vty: Use the copyright string from the app_info. --- src/vty/telnet_interface.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/vty/telnet_interface.c b/src/vty/telnet_interface.c index 90690960..1523a899 100644 --- a/src/vty/telnet_interface.c +++ b/src/vty/telnet_interface.c @@ -31,6 +31,7 @@ #include #include +#include /* per connection data */ LLIST_HEAD(active_connections); @@ -89,16 +90,18 @@ int telnet_init(void *tall_ctx, void *priv, int port) return 0; } -extern const char *openbsc_copyright; +extern struct host host; static void print_welcome(int fd) { int ret; static char *msg = - "Welcome to the OpenBSC Control interface\n"; + "Welcome to the OpenBSC Control interface\r\n"; ret = write(fd, msg, strlen(msg)); - ret = write(fd, openbsc_copyright, strlen(openbsc_copyright)); + + if (host.app_info->copyright) + ret = write(fd, host.app_info->copyright, strlen(host.app_info->copyright)); } int telnet_close_client(struct bsc_fd *fd) -- cgit v1.2.3