From: Jim Meyering Date: Mon, 31 Aug 2009 07:44:30 +0000 (+0200) Subject: maint: revert my stdbuf change: the result didn't even compile X-Git-Tag: v7.6~52 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a4e123abd3dab42f48cc79d9e2c1cbc72e77d18b;p=thirdparty%2Fcoreutils.git maint: revert my stdbuf change: the result didn't even compile This reverts commit c1e158489d88bad418d52ceadf37af0b6f5b2112. --- diff --git a/src/stdbuf.c b/src/stdbuf.c index 38a531375f..007cc21946 100644 --- a/src/stdbuf.c +++ b/src/stdbuf.c @@ -145,6 +145,7 @@ set_program_path (const char *arg) } else { + char *path; char tmppath[PATH_MAX + 1]; ssize_t len = readlink ("/proc/self/exe", tmppath, sizeof (tmppath) - 1); if (len > 0) @@ -155,7 +156,7 @@ set_program_path (const char *arg) else if ((path = getenv ("PATH"))) { char *dir; - char *path = xstrdup (path); + path = xstrdup (path); for (dir = strtok (path, ":"); dir != NULL; dir = strtok (NULL, ":")) { int req = snprintf (tmppath, sizeof (tmppath), "%s/%s", dir, arg);