projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b79a237
)
don't tell people to exit/quit when it's not a valid command anymore
author
Mark Spencer
<markster@digium.com>
Thu, 21 Aug 2003 02:34:03 +0000
(
02:34
+0000)
committer
Mark Spencer
<markster@digium.com>
Thu, 21 Aug 2003 02:34:03 +0000
(
02:34
+0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1391
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
asterisk.c
patch
|
blob
|
history
diff --git
a/asterisk.c
b/asterisk.c
index
8813c07
..
2b3f498
100755
(executable)
--- a/
asterisk.c
+++ b/
asterisk.c
@@
-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 {