don't tell people to exit/quit when it's not a valid command anymore

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1391 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.0
Mark Spencer 22 years ago
parent b79a237186
commit 7c7806d768

@ -1448,8 +1448,12 @@ int main(int argc, char *argv[])
buf[strlen(buf)-1] = '\0';
consolehandler((char *)buf);
} else
ast_cli(STDOUT_FILENO, "\nUse EXIT or QUIT to exist, or STOP NOW to shutdown Asterisk\n");
} else {
if (option_remote)
ast_cli(STDOUT_FILENO, "\nUse EXIT or QUIT to exit the asterisk console\n");
else
ast_cli(STDOUT_FILENO, "\nUse STOP NOW to shutdown Asterisk\n");
}
}
} else {

Loading…
Cancel
Save