diff options
-rw-r--r-- | chgrp.c | 2 | ||||
-rw-r--r-- | chown.c | 4 | ||||
-rw-r--r-- | coreutils/chgrp.c | 2 | ||||
-rw-r--r-- | coreutils/chown.c | 4 |
4 files changed, 6 insertions, 6 deletions
@@ -34,7 +34,7 @@ #endif -static long gid = -1; +static long gid; static int fileAction(const char *fileName, struct stat *statbuf, void* junk) { @@ -33,8 +33,8 @@ #define lchown chown #endif -static long uid = -1; -static long gid = -1; +static long uid; +static long gid; static int fileAction(const char *fileName, struct stat *statbuf, void* junk) { diff --git a/coreutils/chgrp.c b/coreutils/chgrp.c index ec1a037..fbc1036 100644 --- a/coreutils/chgrp.c +++ b/coreutils/chgrp.c @@ -34,7 +34,7 @@ #endif -static long gid = -1; +static long gid; static int fileAction(const char *fileName, struct stat *statbuf, void* junk) { diff --git a/coreutils/chown.c b/coreutils/chown.c index 9ff2872..0114033 100644 --- a/coreutils/chown.c +++ b/coreutils/chown.c @@ -33,8 +33,8 @@ #define lchown chown #endif -static long uid = -1; -static long gid = -1; +static long uid; +static long gid; static int fileAction(const char *fileName, struct stat *statbuf, void* junk) { |