aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2014-06-30 12:41:26 +0200
committerLennart Poettering <lennart@poettering.net>2014-06-30 12:41:26 +0200
commit6afeb1cfe404e8615441c8727b48343253fc731a (patch)
treeb9101e4b9504dcaaf579df4bc23d59fa4ba1851c
parenttests: add missing XDG_RUNTIME_DIR env variable (diff)
downloadsystemd-6afeb1cfe404e8615441c8727b48343253fc731a.tar.gz
systemd-6afeb1cfe404e8615441c8727b48343253fc731a.tar.bz2
systemd-6afeb1cfe404e8615441c8727b48343253fc731a.zip
util: fix comment
-rw-r--r--src/shared/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/util.c b/src/shared/util.c
index 1709bb70c..af6bde2c3 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;