From: Lennart Poettering Date: Mon, 30 Jun 2014 10:41:26 +0000 (+0200) Subject: util: fix comment X-Git-Tag: v215~116 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=6afeb1cfe404e8615441c8727b48343253fc731a;p=elogind.git util: fix comment --- 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;