aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/gnunet_peerstore_service.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/gnunet_peerstore_service.h b/src/include/gnunet_peerstore_service.h
index fcd0bb5f2..73ecadc8b 100644
--- a/src/include/gnunet_peerstore_service.h
+++ b/src/include/gnunet_peerstore_service.h
@@ -46,13 +46,13 @@ enum GNUNET_PEERSTORE_StoreOption
46 /** 46 /**
47 * Possibly store multiple values under given key. 47 * Possibly store multiple values under given key.
48 */ 48 */
49 GNUNET_PEERSTORE_STOREOPTION_MULTIPLE, 49 GNUNET_PEERSTORE_STOREOPTION_MULTIPLE = 0,
50 50
51 /** 51 /**
52 * Delete any previous values for the given key before 52 * Delete any previous values for the given key before
53 * storing the given value. 53 * storing the given value.
54 */ 54 */
55 GNUNET_PEERSTORE_STOREOPTION_REPLACE, 55 GNUNET_PEERSTORE_STOREOPTION_REPLACE = 1,
56 56
57}; 57};
58 58