chiark / gitweb /
util: fix comment
authorLennart Poettering <lennart@poettering.net>
Mon, 30 Jun 2014 10:41:26 +0000 (12:41 +0200)
committerLennart Poettering <lennart@poettering.net>
Mon, 30 Jun 2014 10:41:26 +0000 (12:41 +0200)
src/shared/util.c

index 1709bb70ca3ab332894965d5034daea95de1319e..af6bde2c3dd280e8c3f72f090d035d8d88b32e17 100644 (file)
@@ -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;