From c59cbf4028f6977ff99a635714a88219da1155c7 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 8 Jun 2019 15:51:44 +0200 Subject: [PATCH] nss: tests: fix typo in comment --- nss/tests/pw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nss/tests/pw.c b/nss/tests/pw.c index 4a32bfd..f7e537f 100644 --- a/nss/tests/pw.c +++ b/nss/tests/pw.c @@ -245,7 +245,7 @@ static void test_getpwnam(void) { assert(s == NSS_STATUS_TRYAGAIN); assert(errnop == ERANGE); s = _nss_cash_getpwnam_r("nope", &p, tmp_small, sizeof(tmp_small), &errnop); - assert(s == NSS_STATUS_NOTFOUND); // 42 does not exist + assert(s == NSS_STATUS_NOTFOUND); // does not exist assert(errnop == ENOENT); s = _nss_cash_getpwnam_r("nobody", &p, tmp_small, sizeof(tmp_small), &errnop); assert(s == NSS_STATUS_TRYAGAIN); -- 2.43.2