summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--auto_tests/crypto_test.c2
-rw-r--r--configure.ac4
2 files changed, 3 insertions, 3 deletions
diff --git a/auto_tests/crypto_test.c b/auto_tests/crypto_test.c
index b3ce6259..683cb106 100644
--- a/auto_tests/crypto_test.c
+++ b/auto_tests/crypto_test.c
@@ -232,7 +232,7 @@ START_TEST(test_large_data)
232 c1len = encrypt_data_fast(k, n, m1, sizeof(m1), c1); 232 c1len = encrypt_data_fast(k, n, m1, sizeof(m1), c1);
233 c2len = encrypt_data_fast(k, n, m2, sizeof(m2), c2); 233 c2len = encrypt_data_fast(k, n, m2, sizeof(m2), c2);
234 234
235 ck_assert_msg(c1len == sizeof(m1) + ENCRYPTION_PADDING, "Could not encrypt max size"); 235 ck_assert_msg(c1len == sizeof(m1) + ENCRYPTION_PADDING, "could not encrypt max size");
236 ck_assert_msg(c2len == -1, "incorrectly succeeded encrypting massive size"); 236 ck_assert_msg(c2len == -1, "incorrectly succeeded encrypting massive size");
237 237
238 m1plen = decrypt_data_fast(k, n, c1, c1len, m1prime); 238 m1plen = decrypt_data_fast(k, n, c1, c1len, m1prime);
diff --git a/configure.ac b/configure.ac
index 185fecb4..d11c396a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -208,7 +208,7 @@ if test -n "$PKG_CONFIG"; then
208 ], 208 ],
209 [ 209 [
210 AC_MSG_WARN([$LIBCONFIG_PKG_ERRORS]) 210 AC_MSG_WARN([$LIBCONFIG_PKG_ERRORS])
211 AC_MSG_WARN([libconfig not available, will not build DHT botstrap daemon]) 211 AC_MSG_WARN([libconfig not available, will not build DHT bootstrap daemon])
212 BUILD_DHT_BOOTSTRAP_DAEMON="no" 212 BUILD_DHT_BOOTSTRAP_DAEMON="no"
213 ]) 213 ])
214 fi 214 fi
@@ -223,7 +223,7 @@ if test -n "$PKG_CONFIG"; then
223 ]) 223 ])
224 fi 224 fi
225else 225else
226 AC_MSG_WARN([pkg-config was not found on your sytem]) 226 AC_MSG_WARN([pkg-config was not found on your system])
227fi 227fi
228 228
229if (test "x$BUILD_NTOX" = "xyes") && (test "x$NCURSES_FOUND" != "xyes"); then 229if (test "x$BUILD_NTOX" = "xyes") && (test "x$NCURSES_FOUND" != "xyes"); then