From c97f96c57062030cdc969f540c8d8643fd576f5a Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Sun, 8 Dec 2002 11:22:28 +0000 Subject: [PATCH] Added error message for no IP address --- mbtask/outstat.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mbtask/outstat.c b/mbtask/outstat.c index 76ff6731..769b837d 100644 --- a/mbtask/outstat.c +++ b/mbtask/outstat.c @@ -152,6 +152,7 @@ char *callstatus(int status) case MBERR_NO_PORT_AVAILABLE: return (char *)"No tty "; case MBERR_NOT_ZMH: return (char *)"No ZMH "; case MBERR_SESSION_ERROR: return (char *)"Badsess"; + case MBERR_NO_IP_ADDRESS: return (char *)"No IP "; default: tasklog('-', "callstatus(%d), unknown", status); return (char *)"ERROR "; }