commit | 58361a44b5105e2ed5cae5eb69faa975a993bf72 | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Fri Jul 14 06:27:54 2000 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Fri Jul 14 06:27:54 2000 +0000 |
tree | e62ba0366df7cf7c760ae5797665344592cd62e3 | |
parent | e7413a9cde8da7a54349a0641d0b1e7cbc0e290a [diff] [blame] |
uid and gid were unsigned, but were compared vs signed values (-1) -Erik
diff --git a/chmod_chown_chgrp.c b/chmod_chown_chgrp.c index cf6a508..156a0a9 100644 --- a/chmod_chown_chgrp.c +++ b/chmod_chown_chgrp.c
@@ -33,8 +33,8 @@ #include <pwd.h> -static unsigned long uid = -1; -static unsigned long gid = -1; +static long uid = -1; +static long gid = -1; static int whichApp; static char *theMode = NULL;