From 11f2c32df2722a758f150fb3242d208904ffdacb Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Sat, 30 Jan 2010 22:00:18 +0100 Subject: Fix setprogname to strip leading paths from progname --- src/progname.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/progname.c b/src/progname.c index a5675c0..ef56144 100644 --- a/src/progname.c +++ b/src/progname.c @@ -29,6 +29,8 @@ Rejected in glibc (http://sourceware.org/ml/libc-alpha/2006-03/msg00125.html) */ +#include + #include static const char *__progname = NULL; @@ -40,7 +42,13 @@ getprogname(void) } void -setprogname(const char *new) +setprogname(const char *progname) { - __progname = new; + const char *last_slash; + + last_slash = strrchr(progname, '/'); + if (last_slash == NULL) + __progname = progname; + else + __progname = last_slash + 1; } -- cgit v1.2.3