aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/Makefile.am6
-rw-r--r--src/util/strings.c1
2 files changed, 6 insertions, 1 deletions
diff --git a/src/util/Makefile.am b/src/util/Makefile.am
index e25bb8556c..79d5b7edb3 100644
--- a/src/util/Makefile.am
+++ b/src/util/Makefile.am
@@ -210,6 +210,7 @@ check_PROGRAMS = \
test_crypto_aes \
test_crypto_aes_weak \
test_crypto_crc \
+ test_crypto_ecc \
test_crypto_hash \
test_crypto_hkdf \
test_crypto_ksk \
@@ -333,6 +334,11 @@ test_crypto_crc_SOURCES = \
test_crypto_crc_LDADD = \
$(top_builddir)/src/util/libgnunetutil.la
+test_crypto_ecc_SOURCES = \
+ test_crypto_ecc.c
+test_crypto_ecc_LDADD = \
+ $(top_builddir)/src/util/libgnunetutil.la
+
test_crypto_hash_SOURCES = \
test_crypto_hash.c
test_crypto_hash_LDADD = \
diff --git a/src/util/strings.c b/src/util/strings.c
index 47ef6c1f95..d3e89b3a84 100644
--- a/src/util/strings.c
+++ b/src/util/strings.c
@@ -988,7 +988,6 @@ GNUNET_STRINGS_path_is_absolute (const char *filename, int can_be_uri,
}
else
{
- is_uri = GNUNET_NO;
if (r_is_uri)
*r_is_uri = GNUNET_NO;
}