diff options
author | default <nobody@localhost> | 2023-10-13 06:33:12 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-10-13 06:33:12 +0200 |
commit | 253e7f9eaa3f3279f2a8639949f74acf0797de33 (patch) | |
tree | bb7ff4868154bdad2325c27fdd0b4c55083dd5f4 /utils.c | |
parent | e127269a4a095c8628cef8e83c10588fd91666da (diff) |
Don't allow creating users which user name strings only differ in case.
Diffstat (limited to 'utils.c')
-rw-r--r-- | utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -244,7 +244,7 @@ int adduser(const char *uid) } if (user_open(&snac, uid)) { - printf("ERROR: user '%s' already exists\n", uid); + printf("ERROR: user '%s' already exists\n", snac.uid); return 1; } |