aboutsummaryrefslogtreecommitdiffstats
path: root/asterisk.c
diff options
context:
space:
mode:
Diffstat (limited to 'asterisk.c')
-rwxr-xr-xasterisk.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/asterisk.c b/asterisk.c
index 2aa7c0c52..e1842fb86 100755
--- a/asterisk.c
+++ b/asterisk.c
@@ -1969,6 +1969,16 @@ int main(int argc, char *argv[])
}
}
+ /* For remote connections, change the name of the remote connection.
+ * We do this for the benefit of init scripts (which need to know if/when
+ * the main asterisk process has died yet). */
+ if (option_remote) {
+ strcpy(argv[0], "rasterisk");
+ for (x = 1; x < argc; x++) {
+ argv[x] = argv[0] + 10;
+ }
+ }
+
if (option_dumpcore) {
struct rlimit l;
memset(&l, 0, sizeof(l));