aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Tarabai <tarabai@devegypt.com>2014-08-25 10:24:37 +0000
committerOmar Tarabai <tarabai@devegypt.com>2014-08-25 10:24:37 +0000
commit79fe43e09ece9b32e2a14d0af71cebc412945bf3 (patch)
treed7178820b8114673cf12939ac17b6e84155154b3
parente9c23061dfde4ecc54da4b5d588ebe2c54e798d9 (diff)
downloadgnunet-79fe43e09ece9b32e2a14d0af71cebc412945bf3.tar.gz
gnunet-79fe43e09ece9b32e2a14d0af71cebc412945bf3.zip
peerstore: fix
-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