Skip to content
Snippets Groups Projects
Commit 32bde5b0 authored by James Golovich's avatar James Golovich
Browse files

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
parent af6016cf
Branches
Tags
No related merge requests found
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment