summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorC. McEnroe2021-06-06 10:24:22 -0400
committerC. McEnroe2021-06-06 10:24:22 -0400
commit7ea14eec84241da5ca5dce0df6d86fda45762858 (patch)
tree1575e2a1242d0f31dc60de65a83c5c2bdd1d142c
parent0fe004c5c499b7daf76f4ac769025b5395d41220 (diff)
Pad kiosk username with zero, not space
Oops!
-rw-r--r--chat.c2
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;
}