aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2020-07-05 23:28:24 +0200
committerMartin Schanzenbach <mschanzenbach@posteo.de>2020-07-05 23:28:24 +0200
commit23fc3bf6abf1557a6f114af2016abafd5de6a0fe (patch)
tree4ee0b730bed16a7eda35abfff660523f0e48248d
parent4ae4bcb747b95d1ad296a55a3802a8a35437d845 (diff)
parentde4c25671bde33c5045b6199899cf8acc31ef0e6 (diff)
downloadgnunet-23fc3bf6abf1557a6f114af2016abafd5de6a0fe.tar.gz
gnunet-23fc3bf6abf1557a6f114af2016abafd5de6a0fe.zip
Merge branch 'master' of ssh://gnunet.org/gnunet
-rw-r--r--src/json/json_helper.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/json/json_helper.c b/src/json/json_helper.c
index 02bd6bfab..621487f0a 100644
--- a/src/json/json_helper.c
+++ b/src/json/json_helper.c
@@ -721,7 +721,7 @@ GNUNET_JSON_spec_absolute_time (const char *name,
721 .cls = NULL, 721 .cls = NULL,
722 .field = name, 722 .field = name,
723 .ptr = at, 723 .ptr = at,
724 .ptr_size = sizeof(uint64_t), 724 .ptr_size = sizeof(struct GNUNET_TIME_Absolute),
725 .size_ptr = NULL 725 .size_ptr = NULL
726 }; 726 };
727 727
@@ -775,7 +775,7 @@ GNUNET_JSON_spec_absolute_time_nbo (const char *name,
775 .cls = NULL, 775 .cls = NULL,
776 .field = name, 776 .field = name,
777 .ptr = at, 777 .ptr = at,
778 .ptr_size = sizeof(uint64_t), 778 .ptr_size = sizeof(struct GNUNET_TIME_AbsoluteNBO),
779 .size_ptr = NULL 779 .size_ptr = NULL
780 }; 780 };
781 781
@@ -852,7 +852,7 @@ GNUNET_JSON_spec_relative_time (const char *name,
852 .cls = NULL, 852 .cls = NULL,
853 .field = name, 853 .field = name,
854 .ptr = rt, 854 .ptr = rt,
855 .ptr_size = sizeof(uint64_t), 855 .ptr_size = sizeof(struct GNUNET_TIME_Relative),
856 .size_ptr = NULL 856 .size_ptr = NULL
857 }; 857 };
858 858