summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2022-03-04 22:09:42 +0100
committerMartin Schanzenbach <schanzen@gnunet.org>2022-03-04 22:09:42 +0100
commitb24e01725eb2ea595542b83db2b85cedda72447b (patch)
treecbc7a02a0f99766a80680c5510a04ee3e51ebb50
parent7382e67a4cd21164c6893f821c89344d58aec6a0 (diff)
downloadgnunet-b24e01725eb2ea595542b83db2b85cedda72447b.tar.gz
gnunet-b24e01725eb2ea595542b83db2b85cedda72447b.zip
-changelog housekeeping; namestore messagev0.16.1
-rw-r--r--ChangeLog18
-rw-r--r--src/namestore/gnunet-namestore.c2
2 files changed, 19 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7a522a201..b5596af5c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,21 @@
1Fri, 4 Mar 2022 14:17:37 +0100 (0e6b1f4a2)
2NAMESTORE: Warn use of low relative expiration times - Martin Schanzenbach
3
4Thu, 3 Mar 2022 21:34:09 +0100 (0f0ff3785)
5NAMESTORE: Do not display label for TOMBSTONE only record sets - Martin Schanzenbach
6
7Thu, 3 Mar 2022 21:31:15 +0100 (64598c8fe)
8GNS: Fix publishing of private records - Martin Schanzenbach
9
10Mon, 28 Feb 2022 02:51:04 +0000 (8d9b10826)
11Add `contrib/get_version.sh` to `EXTRA_DIST` (for allowing to launch `autoreconf -i` with the released tarball, when necessary) - madmurphy
12
13Sun, 27 Feb 2022 20:54:49 +0100 (fd1d4df8f)
14BUILD: Allow boostrap when offline (if gana files exist) - Martin Schanzenbach
15
16Sat, 26 Feb 2022 23:26:33 +0100 (82d9ca012)
17BUILD: Detect missing libsodium. Fixes #7153 - Martin Schanzenbach
18
1Fri, 25 Feb 2022 00:46:09 +0100 (5e4cbb92b) 19Fri, 25 Feb 2022 00:46:09 +0100 (5e4cbb92b)
2add GNUNET_B2S() macro; fix dht_line_test: we sign over query_hash, not block key - Martin Schanzenbach 20add GNUNET_B2S() macro; fix dht_line_test: we sign over query_hash, not block key - Martin Schanzenbach
3 21
diff --git a/src/namestore/gnunet-namestore.c b/src/namestore/gnunet-namestore.c
index 3e19eba4b..dd24e9b05 100644
--- a/src/namestore/gnunet-namestore.c
+++ b/src/namestore/gnunet-namestore.c
@@ -875,7 +875,7 @@ parse_expiration (const char *expirationstring,
875 if (GNUNET_TIME_relative_cmp (etime_rel, <, WARN_RELATIVE_EXPIRATION_LIMIT)) 875 if (GNUNET_TIME_relative_cmp (etime_rel, <, WARN_RELATIVE_EXPIRATION_LIMIT))
876 { 876 {
877 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, 877 GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
878 "Relative expiration times of less than %s are not recommended\n", 878 "Relative expiration times of less than %s are not recommended. To improve availability, consider increasing this value.\n",
879 GNUNET_STRINGS_relative_time_to_string ( 879 GNUNET_STRINGS_relative_time_to_string (
880 WARN_RELATIVE_EXPIRATION_LIMIT, GNUNET_NO)); 880 WARN_RELATIVE_EXPIRATION_LIMIT, GNUNET_NO));
881 } 881 }