OSDN Git Service

bionic: equalize the <unknown> program name between ssp.c and libc_init_common.c
authorAndré Goddard Rosa <andre.goddard@gmail.com>
Fri, 5 Feb 2010 19:48:07 +0000 (17:48 -0200)
committerAndré Goddard Rosa <andre.goddard@gmail.com>
Fri, 5 Feb 2010 19:48:07 +0000 (17:48 -0200)
... for the consistency sake.

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
libc/bionic/ssp.c

index 20794f4..f83b2a4 100644 (file)
@@ -76,9 +76,9 @@ void __stack_chk_fail(void)
     sigprocmask(SIG_BLOCK, &sigmask, NULL);
 
     /* Use /proc/self/exe link to obtain the program name for logging
-     * purposes. If it's not available, we set it to "unknown" */
+     * purposes. If it's not available, we set it to "<unknown>" */
     if ((count = readlink("/proc/self/exe", path, sizeof(path) - 1)) == -1) {
-        strlcpy(path, "unknown", sizeof(path));
+        strlcpy(path, "<unknown>", sizeof(path));
     } else {
         path[count] = '\0';
     }