mirror of
https://git.busybox.net/busybox
synced 2026-02-07 20:50:26 +00:00
uid and gid were unsigned, but were compared vs signed values (-1)
-Erik
This commit is contained in:
parent
e7413a9cde
commit
58361a44b5
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue