From 58361a44b5105e2ed5cae5eb69faa975a993bf72 Mon Sep 17 00:00:00 2001
From: Eric Andersen <andersen@codepoet.org>
Date: Fri, 14 Jul 2000 06:27:54 +0000
Subject: uid and gid were unsigned, but were compared vs signed values (-1) 
 -Erik

---
 chmod_chown_chgrp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/chmod_chown_chgrp.c b/chmod_chown_chgrp.c
index cf6a50895..156a0a9f9 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;
 
-- 
cgit v1.2.3-55-g6feb