mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-18 18:58:22 +00:00
If asterisk is started with progname of 'rasterisk' assume its a remote
console (bug 842) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2491 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1264,6 +1264,11 @@ int main(int argc, char *argv[])
|
||||
_argv[x] = argv[x];
|
||||
_argv[x] = NULL;
|
||||
|
||||
/* if the progname is rasterisk consider it a remote console */
|
||||
if ( argv[0] && (strstr(argv[0], "rasterisk")) != NULL) {
|
||||
option_remote++;
|
||||
option_nofork++;
|
||||
}
|
||||
if (gethostname(hostname, sizeof(hostname)))
|
||||
strncpy(hostname, "<Unknown>", sizeof(hostname)-1);
|
||||
mainpid = getpid();
|
||||
|
Reference in New Issue
Block a user