From a4f1a3087a74063f53f92fe8cde8aee984d3c74b Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Fri, 2 Feb 2024 09:09:55 +0900 Subject: [PATCH] user-util: fix typo Follow-up for 75673cd8aee5c6174538e71dd36c7a353c836973. --- src/basic/user-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/basic/user-util.c b/src/basic/user-util.c index fa5dccfd169..b3df413be6b 100644 --- a/src/basic/user-util.c +++ b/src/basic/user-util.c @@ -1065,7 +1065,7 @@ int getpwnam_malloc(const char *name, struct passwd **ret) { int r; /* A wrapper around getpwnam_r() that allocates the necessary buffer on the heap. The caller must - * free() the returned sructured! */ + * free() the returned structures! */ if (isempty(name)) return -EINVAL; -- 2.47.3