aboutsummaryrefslogtreecommitdiffstats
path: root/asterisk.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-26 20:49:21 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-26 20:49:21 +0000
commitf852fab05d7f5c541f884381fe0b1d6a2b94621e (patch)
tree14a76c1876e1b5301fbae13e5195f373e40ada9b /asterisk.c
parent3a6c2ed0dfae8d13099defcffcb82cf4842fa0f1 (diff)
Back in revision 4798, this message was changed from using ast_cli() to directly
calling write(). During this change, checking if this was a remote console was removed. This caused this message about using "exit" or "quit" to exit an Asterisk console to come up in times where it did not make sense. This change restores the check to see if this is a remote console before printing the message. (fixes BE-4) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@43708 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'asterisk.c')
-rw-r--r--asterisk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/asterisk.c b/asterisk.c
index a5f07a2b2..9cfdc565d 100644
--- a/asterisk.c
+++ b/asterisk.c
@@ -2417,7 +2417,7 @@ int main(int argc, char *argv[])
buf[strlen(buf)-1] = '\0';
consolehandler((char *)buf);
- } else {
+ } else if (option_remote) {
if (write(STDOUT_FILENO, "\nUse EXIT or QUIT to exit the asterisk console\n",
strlen("\nUse EXIT or QUIT to exit the asterisk console\n")) < 0) {
/* Whoa, stdout disappeared from under us... Make /dev/null's */