diff options
author | Martin Schanzenbach <schanzen@gnunet.org> | 2022-03-04 22:09:42 +0100 |
---|---|---|
committer | Martin Schanzenbach <schanzen@gnunet.org> | 2022-03-04 22:09:42 +0100 |
commit | b24e01725eb2ea595542b83db2b85cedda72447b (patch) | |
tree | cbc7a02a0f99766a80680c5510a04ee3e51ebb50 | |
parent | 7382e67a4cd21164c6893f821c89344d58aec6a0 (diff) |
-changelog housekeeping; namestore messagev0.16.1
-rw-r--r-- | ChangeLog | 18 | ||||
-rw-r--r-- | src/namestore/gnunet-namestore.c | 2 |
2 files changed, 19 insertions, 1 deletions
@@ -1,3 +1,21 @@ +Fri, 4 Mar 2022 14:17:37 +0100 (0e6b1f4a2) +NAMESTORE: Warn use of low relative expiration times - Martin Schanzenbach + +Thu, 3 Mar 2022 21:34:09 +0100 (0f0ff3785) +NAMESTORE: Do not display label for TOMBSTONE only record sets - Martin Schanzenbach + +Thu, 3 Mar 2022 21:31:15 +0100 (64598c8fe) +GNS: Fix publishing of private records - Martin Schanzenbach + +Mon, 28 Feb 2022 02:51:04 +0000 (8d9b10826) +Add `contrib/get_version.sh` to `EXTRA_DIST` (for allowing to launch `autoreconf -i` with the released tarball, when necessary) - madmurphy + +Sun, 27 Feb 2022 20:54:49 +0100 (fd1d4df8f) +BUILD: Allow boostrap when offline (if gana files exist) - Martin Schanzenbach + +Sat, 26 Feb 2022 23:26:33 +0100 (82d9ca012) +BUILD: Detect missing libsodium. Fixes #7153 - Martin Schanzenbach + Fri, 25 Feb 2022 00:46:09 +0100 (5e4cbb92b) add GNUNET_B2S() macro; fix dht_line_test: we sign over query_hash, not block key - Martin Schanzenbach 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, if (GNUNET_TIME_relative_cmp (etime_rel, <, WARN_RELATIVE_EXPIRATION_LIMIT)) { GNUNET_log (GNUNET_ERROR_TYPE_WARNING, - "Relative expiration times of less than %s are not recommended\n", + "Relative expiration times of less than %s are not recommended. To improve availability, consider increasing this value.\n", GNUNET_STRINGS_relative_time_to_string ( WARN_RELATIVE_EXPIRATION_LIMIT, GNUNET_NO)); } |