From: Ben Pfaff Date: Thu, 8 Feb 2007 05:26:42 +0000 (+0000) Subject: Correct name of function fn_is_special. Thanks to John McCabe-Dansted X-Git-Tag: sav-api~1567 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8019f5ebb77a3b010ff63b14ba69d70810b040fb;p=pspp Correct name of function fn_is_special. Thanks to John McCabe-Dansted for pointing this out. --- diff --git a/src/data/ChangeLog b/src/data/ChangeLog index 5cd9a02e6b..3635166857 100644 --- a/src/data/ChangeLog +++ b/src/data/ChangeLog @@ -1,3 +1,9 @@ +Wed Feb 7 21:25:15 2007 Ben Pfaff + + * file-name.c (fn_normalize): Correct name of function + fn_is_special. Thanks to John McCabe-Dansted + for pointing this out. + Thu Feb 1 16:53:37 2007 Ben Pfaff We are using a single member in struct file_handle, the "name" diff --git a/src/data/file-name.c b/src/data/file-name.c index 57dfe08d0b..f937592636 100644 --- a/src/data/file-name.c +++ b/src/data/file-name.c @@ -353,7 +353,7 @@ fn_normalize (const char *fn1) char *fn2; /* Don't change special file names. */ - if (is_special_file_name (file_name)) + if (fn_is_special (file_name)) return xstrdup (file_name); /* First find the required buffer length. */