Skip to content

Commit

Permalink
Cosmetical changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
magnumripper committed Jan 26, 2013
1 parent 0f4b5b4 commit 19ccb73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ NSS_LDFLAGS = `pkg-config 2>/dev/null --libs nss`

# Try to auto-detect GMP and KRB5 libs. The grep is needed in case some of the
# paths does not exist, because find will return false even though finding a
# file. If these hacks do not work, see next sections below.
# file. If these hacks do not work, comment them out and see next sections.
HAVE_GMP = `find 2>&1 /usr/include /usr/local/include /opt/local/include -name "gmp.h" | grep -q "gmp.h" && echo -DHAVE_GMP`
GMP_LDFLAGS = `find 2>&1 /usr/include /usr/local/include /opt/local/include -name "gmp.h" | grep -q "gmp.h" && echo -lgmp`
HAVE_KRB5 = `find 2>&1 /usr/include/ /usr/local/include/ /opt/local/include -name "krb5.h" | grep -q "krb5.h" && echo -DHAVE_KRB5`
Expand Down
2 changes: 1 addition & 1 deletion src/bench.c
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ int benchmark_all(void)
if (failed && total > 1 && !event_abort)
printf("%u out of %u tests have FAILED\n", failed, total);
else if (total > 1 && !event_abort)
printf("All %u tests have passed self-tests!\n", total);
printf("All %u formats passed self-tests!\n", total);

return failed || event_abort;
}

0 comments on commit 19ccb73

Please sign in to comment.