aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/octoi/octoi_srv_vty.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/octoi/octoi_srv_vty.c b/src/octoi/octoi_srv_vty.c
index e5b91c7..c9f63cb 100644
--- a/src/octoi/octoi_srv_vty.c
+++ b/src/octoi/octoi_srv_vty.c
@@ -359,9 +359,13 @@ DEFUN(show_server, show_server_cmd,
SHOW_STR "Display information about the OCTOI Server\n")
{
struct octoi_server *srv = g_octoi->server;
- struct octoi_sock *sock = srv->sock;
- vty_show_octoi_sock(vty, sock);
+ if (!srv) {
+ vty_out(vty, "%% No OCTOI server present%s", VTY_NEWLINE);
+ return CMD_WARNING;
+ }
+
+ vty_show_octoi_sock(vty, srv->sock);
return CMD_SUCCESS;
}