X-Git-Url: https://ruderich.org/simon/gitweb/?p=nsscash%2Fnsscash.git;a=blobdiff_plain;f=nss%2Ftests%2Fpw.c;h=cf4f92d3844ad7eb33167634ad4efbb6037c4c66;hp=b832b38d8c3967d19a5b06681fdb1f32b92d1f55;hb=f6c708d873c44b7ccd4de1144d026b504d878efc;hpb=566dce4a9832074468b2782a2f88eda373ca5f4f diff --git a/nss/tests/pw.c b/nss/tests/pw.c index b832b38..cf4f92d 100644 --- a/nss/tests/pw.c +++ b/nss/tests/pw.c @@ -321,7 +321,7 @@ static void test_limits(void) { int r; FILE *fh; - const char *nsscache_cmd = "../nsscash convert passwd " + const char *nsscash_cmd = "../nsscash convert passwd " "tests/limits tests/limits.nsscash 2> /dev/null"; // Entries which will not fit in uint16_t, nsscash must abort @@ -333,7 +333,7 @@ static void test_limits(void) { r = fclose(fh); assert(r == 0); - r = system(nsscache_cmd); + r = system(nsscash_cmd); assert(r != -1); assert(WIFEXITED(r) && WEXITSTATUS(r) == 1); @@ -344,7 +344,7 @@ static void test_limits(void) { r = fclose(fh); assert(r == 0); - r = system(nsscache_cmd); + r = system(nsscash_cmd); assert(r != -1); assert(WIFEXITED(r) && WEXITSTATUS(r) == 1); @@ -357,7 +357,7 @@ static void test_limits(void) { r = fclose(fh); assert(r == 0); - r = system(nsscache_cmd); + r = system(nsscash_cmd); assert(r != -1); assert(WIFEXITED(r) && WEXITSTATUS(r) == 0);