# HG changeset patch # User Richard M. Stallman # Date 1015186167 0 # Node ID e26d9755d4e85bad61435905fea197d9c789621e # Parent b6abb8a7ea891f8388fc73a5fa5b305238d6e39c (file_p): Rename arg `path' to `filename'. diff -r b6abb8a7ea89 -r e26d9755d4e8 src/xrdb.c --- a/src/xrdb.c Sun Mar 03 20:08:56 2002 +0000 +++ b/src/xrdb.c Sun Mar 03 20:09:27 2002 +0000 @@ -323,13 +323,13 @@ static int -file_p (path) - char *path; +file_p (filename) + char *filename; { struct stat status; - return (access (path, 4) == 0 /* exists and is readable */ - && stat (path, &status) == 0 /* get the status */ + return (access (filename, 4) == 0 /* exists and is readable */ + && stat (filename, &status) == 0 /* get the status */ && (S_ISDIR (status.st_mode)) == 0); /* not a directory */ }