aboutsummaryrefslogtreecommitdiff
path: root/src/util/strings.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-03-19 13:12:47 +0000
committerChristian Grothoff <christian@grothoff.org>2015-03-19 13:12:47 +0000
commit56af9c4ba537faf4c0a4a3acf8447a49673eec64 (patch)
tree1a98bea2666fb86bef94d361199c3d01fde93db9 /src/util/strings.c
parentd86130ceeb0e9f7ef7adf192b8f44bf94398b466 (diff)
downloadgnunet-56af9c4ba537faf4c0a4a3acf8447a49673eec64.tar.gz
gnunet-56af9c4ba537faf4c0a4a3acf8447a49673eec64.zip
-get test to work, but with ecdsa instead of eddsa
Diffstat (limited to 'src/util/strings.c')
-rw-r--r--src/util/strings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/strings.c b/src/util/strings.c
index 849d9e843..379f3f5a3 100644
--- a/src/util/strings.c
+++ b/src/util/strings.c
@@ -895,7 +895,7 @@ GNUNET_STRINGS_data_to_string (const void *data,
895 out[wpos++] = encTable__[(bits >> (vbit - 5)) & 31]; 895 out[wpos++] = encTable__[(bits >> (vbit - 5)) & 31];
896 vbit -= 5; 896 vbit -= 5;
897 } 897 }
898 GNUNET_assert (vbit == 0); 898 GNUNET_assert (0 == vbit);
899 if (wpos < out_size) 899 if (wpos < out_size)
900 out[wpos] = '\0'; 900 out[wpos] = '\0';
901 return &out[wpos]; 901 return &out[wpos];