From: Simon Ruderich Date: Sat, 8 Jun 2019 13:51:44 +0000 (+0200) Subject: nss: tests: fix typo in comment X-Git-Tag: 0.1~84 X-Git-Url: https://ruderich.org/simon/gitweb/?p=nsscash%2Fnsscash.git;a=commitdiff_plain;h=c59cbf4028f6977ff99a635714a88219da1155c7 nss: tests: fix typo in comment --- 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);