diff options
author | C. McEnroe | 2021-06-06 10:24:22 -0400 |
---|---|---|
committer | C. McEnroe | 2021-06-06 10:24:22 -0400 |
commit | 7ea14eec84241da5ca5dce0df6d86fda45762858 (patch) | |
tree | 1575e2a1242d0f31dc60de65a83c5c2bdd1d142c /chat.c | |
parent | 0fe004c5c499b7daf76f4ac769025b5395d41220 (diff) |
Pad kiosk username with zero, not space
Oops!
Diffstat (limited to 'chat.c')
-rw-r--r-- | chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chat.c b/chat.c index e5527ac..b3990f3 100644 --- a/chat.c +++ b/chat.c @@ -273,7 +273,7 @@ int main(int argc, char *argv[]) { if (self.kiosk) { char *hash; - int n = asprintf(&hash, "%8" PRIx32, _hash(user)); + int n = asprintf(&hash, "%08" PRIx32, _hash(user)); if (n < 0) err(EX_OSERR, "asprintf"); user = hash; } |