about summary refs log tree commit diff
path: root/chat.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-06-06 10:24:22 -0400
committerJune McEnroe <june@causal.agency>2021-06-06 10:24:22 -0400
commit7ea14eec84241da5ca5dce0df6d86fda45762858 (patch)
tree1575e2a1242d0f31dc60de65a83c5c2bdd1d142c /chat.c
parentOpenBSD: unveil XDG directories only when needed (diff)
downloadcatgirl-7ea14eec84241da5ca5dce0df6d86fda45762858.tar.gz
catgirl-7ea14eec84241da5ca5dce0df6d86fda45762858.zip
Pad kiosk username with zero, not space
Oops!
Diffstat (limited to 'chat.c')
-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;
 	}