From: Jim Meyering Date: Fri, 28 Oct 1994 17:03:06 +0000 (+0000) Subject: . X-Git-Tag: textutils-1_12_1~497 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c0119ac53405d6aff5bd002b46631fde9b16f500;p=thirdparty%2Fcoreutils.git . --- diff --git a/src/ls.c b/src/ls.c index 1d5348e661..ed9bf8f132 100644 --- a/src/ls.c +++ b/src/ls.c @@ -81,6 +81,7 @@ #ifndef STDC_HEADERS char *ctime (); time_t time (); +void free (); #endif void mode_string (); @@ -1749,7 +1750,7 @@ quote_filename (p, quoted_length) { char buf[5]; sprintf (buf, "\\%03o", (unsigned int) c); - q = stpcpy (p, buf); + q = stpcpy (q, buf); } } }