aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2023-11-29 09:18:17 +0900
committerChristian Grothoff <grothoff@gnunet.org>2023-11-29 09:18:40 +0900
commit475003c4ef58ee6e4351f1a348df2900f1f17ce8 (patch)
tree4193120a515803591c014a08ce66bc3a9d672b91
parent9dd915b5a0b59dfa2589ffc7f8e4ce3b60bdeafb (diff)
downloadgnunet-475003c4ef58ee6e4351f1a348df2900f1f17ce8.tar.gz
gnunet-475003c4ef58ee6e4351f1a348df2900f1f17ce8.zip
towards test package for v0.21.0
-rw-r--r--configure.ac2
-rw-r--r--debian/changelog6
-rw-r--r--src/include/gnunet_pq_lib.h1
-rw-r--r--src/lib/json/json_helper.c8
4 files changed, 10 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac
index 6e579e1dd..0e1bbb75a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
1# This file is part of GNUnet. 1# This file is part of GNUnet.
2# (C) 2001--2022 GNUnet e.V. 2# (C) 2001--2023 GNUnet e.V.
3# 3#
4# GNUnet is free software: you can redistribute it and/or modify it 4# GNUnet is free software: you can redistribute it and/or modify it
5# under the terms of the GNU Affero General Public License as published 5# under the terms of the GNU Affero General Public License as published
diff --git a/debian/changelog b/debian/changelog
index 03bc26e45..afa1a3641 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
1gnunet (0.21.0) unstable; urgency=low
2
3 * First work towards packaging v0.21.0.
4
5 -- Christian Grothoff <grothoff@gnu.org> Thu, 29 Nov 2023 23:50:12 +0200
6
1gnunet (0.20.0) unstable; urgency=low 7gnunet (0.20.0) unstable; urgency=low
2 8
3 * First work towards packaging v0.20.0. 9 * First work towards packaging v0.20.0.
diff --git a/src/include/gnunet_pq_lib.h b/src/include/gnunet_pq_lib.h
index 15af66b5d..db9befa1a 100644
--- a/src/include/gnunet_pq_lib.h
+++ b/src/include/gnunet_pq_lib.h
@@ -339,6 +339,7 @@ GNUNET_PQ_query_param_array_ptrs_bytes_same_size (
339 size_t same_size, 339 size_t same_size,
340 struct GNUNET_PQ_Context *db); 340 struct GNUNET_PQ_Context *db);
341 341
342
342/** 343/**
343 * Generate array of equal-sized query parameter with size determined by 344 * Generate array of equal-sized query parameter with size determined by
344 * variable type from a pointer to an array of pointers to objects of the same 345 * variable type from a pointer to an array of pointers to objects of the same
diff --git a/src/lib/json/json_helper.c b/src/lib/json/json_helper.c
index 4795285f4..7e1d239f7 100644
--- a/src/lib/json/json_helper.c
+++ b/src/lib/json/json_helper.c
@@ -279,12 +279,8 @@ GNUNET_JSON_spec_string (const char *name,
279{ 279{
280 struct GNUNET_JSON_Specification ret = { 280 struct GNUNET_JSON_Specification ret = {
281 .parser = &parse_string, 281 .parser = &parse_string,
282 .cleaner = NULL, 282 .field = name,
283 .cls = NULL, 283 .ptr = strptr
284 .field = name,
285 .ptr = strptr,
286 .ptr_size = 0,
287 .size_ptr = NULL
288 }; 284 };
289 285
290 *strptr = NULL; 286 *strptr = NULL;