diff options
author | Ian Moffett <ian@osmora.org> | 2025-02-21 18:33:21 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-02-21 18:33:21 -0500 |
commit | b734dcbbdf93a68d1275c50cd4f01d85d7c83661 (patch) | |
tree | 71a129bfdcd2f5552919908032e2fecae1b36322 | |
parent | 43191382e71295bf5637b6757f222f4c4b9b9e0e (diff) |
auth: Fix typo in error
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | lib/libostp/auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libostp/auth.c b/lib/libostp/auth.c index 13be3a8..80f3d63 100644 --- a/lib/libostp/auth.c +++ b/lib/libostp/auth.c @@ -64,7 +64,7 @@ pwcheck(char *username, char *pw) } if (waitpid(pid, &status, 0) < 0) { - printf("waidpid() failed\n"); + printf("waitpid() failed\n"); return -1; } |