diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-06-30 12:41:26 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-06-30 12:41:26 +0200 |
commit | 6afeb1cfe404e8615441c8727b48343253fc731a (patch) | |
tree | b9101e4b9504dcaaf579df4bc23d59fa4ba1851c /src | |
parent | 6dbfd104711fa53d35b52cb54ed4557c9099145f (diff) |
util: fix comment
Diffstat (limited to 'src')
-rw-r--r-- | src/shared/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/util.c b/src/shared/util.c index 1709bb70ca..af6bde2c3d 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -284,7 +284,7 @@ int parse_uid(const char *s, uid_t* ret_uid) { if (uid == (uid_t) 0xFFFFFFFF) return -EINVAL; - /* A long time ago UIDs where 16bit, hence explicitly avoid the 32bit -1 too */ + /* A long time ago UIDs where 16bit, hence explicitly avoid the 16bit -1 too */ if (uid == (uid_t) 0xFFFF) return -EINVAL; |