diff options
author | Kay Sievers <kay@vrfy.org> | 2014-07-01 16:00:05 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2014-07-01 16:00:05 +0200 |
commit | f841a154efbb3162d2a732936f031ac7a6b0d4cf (patch) | |
tree | 914f57c79f393a34fa7fa4bab808eeb3d3f37ca9 /src/shared/util.c | |
parent | 3058e017fced6d5c8712e10c8c1477421bc1e960 (diff) |
parse_uid: return -ENXIO for -1 uids
Diffstat (limited to 'src/shared/util.c')
-rw-r--r-- | src/shared/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/util.c b/src/shared/util.c index e75f6c9df3..9b5a47ab6f 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -282,11 +282,11 @@ int parse_uid(const char *s, uid_t* ret_uid) { /* Some libc APIs use (uid_t) -1 as special placeholder */ if (uid == (uid_t) 0xFFFFFFFF) - return -EINVAL; + return -ENXIO; /* A long time ago UIDs where 16bit, hence explicitly avoid the 16bit -1 too */ if (uid == (uid_t) 0xFFFF) - return -EINVAL; + return -ENXIO; *ret_uid = uid; return 0; |