]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 309677 via svnmerge from
authorTilghman Lesher <tilghman@meg.abyt.es>
Sat, 5 Mar 2011 10:29:30 +0000 (10:29 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Sat, 5 Mar 2011 10:29:30 +0000 (10:29 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r309677 | tilghman | 2011-03-05 04:28:24 -0600 (Sat, 05 Mar 2011) | 7 lines

  Missed part of the conversion when we started passing ppid to astcanary.

  (closes issue #18850)
   Reported by: viraptor
   Patches:
         canary_ppid.patch uploaded by viraptor (license 543)
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@309678 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/asterisk.c

index 1b376e33b6ea0d45a5ebcc8127d865c214c61913..edb3241a6236f1478f5f011b45f50c02b90000ee 100644 (file)
@@ -3641,7 +3641,7 @@ int main(int argc, char *argv[])
                        ast_copy_string(canary_binary, argv[0], sizeof(canary_binary));
                        if ((lastslash = strrchr(canary_binary, '/'))) {
                                ast_copy_string(lastslash + 1, "astcanary", sizeof(canary_binary) + canary_binary - (lastslash + 1));
-                               execl(canary_binary, "astcanary", canary_filename, (char *)NULL);
+                               execl(canary_binary, "astcanary", canary_filename, ppid, (char *)NULL);
                        }
 
                        /* Should never happen */