nsstest: fix use of a non-existent word (existant)
authorMichael Adam <obnox@samba.org>
Mon, 11 Jun 2012 15:24:20 +0000 (17:24 +0200)
committerMichael Adam <obnox@samba.org>
Tue, 12 Jun 2012 05:21:41 +0000 (07:21 +0200)
nsswitch/nsstest.c

index e2b39bc6bea9ae2bdb6699f008d5cbf8dbb3441d..39d03424fab5d55279a9223038a395133ff7278b 100644 (file)
@@ -451,25 +451,25 @@ static void nss_test_errors(void)
        pwd = getpwnam("nosuchname");
        if (pwd || last_error != NSS_STATUS_NOTFOUND) {
                total_errors++;
-               printf("ERROR Non existant user gave error %d\n", last_error);
+               printf("ERROR Non existent user gave error %d\n", last_error);
        }
 
        pwd = getpwuid(0xFFF0);
        if (pwd || last_error != NSS_STATUS_NOTFOUND) {
                total_errors++;
-               printf("ERROR Non existant uid gave error %d\n", last_error);
+               printf("ERROR Non existent uid gave error %d\n", last_error);
        }
 
        grp = getgrnam("nosuchgroup");
        if (grp || last_error != NSS_STATUS_NOTFOUND) {
                total_errors++;
-               printf("ERROR Non existant group gave error %d\n", last_error);
+               printf("ERROR Non existent group gave error %d\n", last_error);
        }
 
        grp = getgrgid(0xFFF0);
        if (grp || last_error != NSS_STATUS_NOTFOUND) {
                total_errors++;
-               printf("ERROR Non existant gid gave error %d\n", last_error);
+               printf("ERROR Non existent gid gave error %d\n", last_error);
        }
 }