From 0d97223525e35362c34aff8bf6181285cb351778 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 18 Jan 2025 09:21:14 +0100 Subject: [PATCH] Correcting spelling-typo in comment when initializing semaphore. Signed-off-by: Daniel Baumann --- src/haveged.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/haveged.c b/src/haveged.c index b9c4827..52626c4 100644 --- a/src/haveged.c +++ b/src/haveged.c @@ -489,7 +489,7 @@ int main(int argc, char **argv) fprintf(stderr, "%s: disabling command mode for this instance\n", params->daemon); } } - /* Initilize named semaphore to synchronize command instances */ + /* Initialize named semaphore to synchronize command instances */ if (mkdir("/dev/shm", 0755) != 0) { if (errno != EEXIST) { error_exit("Couldn't create /dev/shm directory: %s", strerror(errno));