aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-05-01 22:14:54 +0200
committerChristian Grothoff <christian@grothoff.org>2018-05-01 22:14:54 +0200
commitee713e989d329969c6ed65a91b93620e8d4123b6 (patch)
treea11fa575c20e9e061ec5ffc14aa7c0fe6bff23f6 /src
parent0c7ee9c2b1ad1290df54b0e394e2ede79575f671 (diff)
downloadgnunet-ee713e989d329969c6ed65a91b93620e8d4123b6.tar.gz
gnunet-ee713e989d329969c6ed65a91b93620e8d4123b6.zip
update gitignore
Diffstat (limited to 'src')
-rw-r--r--src/namestore/.gitignore48
-rw-r--r--src/namestore/gnunet-zoneimport.c6
2 files changed, 51 insertions, 3 deletions
diff --git a/src/namestore/.gitignore b/src/namestore/.gitignore
index 9a4c615ba..e56271eac 100644
--- a/src/namestore/.gitignore
+++ b/src/namestore/.gitignore
@@ -20,3 +20,51 @@ test_plugin_namestore_postgres
20test_plugin_namestore_sqlite 20test_plugin_namestore_sqlite
21test_plugin_namestore_flat 21test_plugin_namestore_flat
22gnunet-zoneimport 22gnunet-zoneimport
23test_namestore_api_lookup_nick_flat
24test_namestore_api_lookup_nick_postgres
25test_namestore_api_lookup_nick_sqlite
26test_namestore_api_lookup_private_flat
27test_namestore_api_lookup_private_postgres
28test_namestore_api_lookup_private_sqlite
29test_namestore_api_lookup_public_flat
30test_namestore_api_lookup_public_postgres
31test_namestore_api_lookup_public_sqlite
32test_namestore_api_lookup_shadow_filter_flat
33test_namestore_api_lookup_shadow_filter_postgres
34test_namestore_api_lookup_shadow_filter_sqlite
35test_namestore_api_lookup_shadow_flat
36test_namestore_api_lookup_shadow_postgres
37test_namestore_api_lookup_shadow_sqlite
38test_namestore_api_monitoring_existing_flat
39test_namestore_api_monitoring_existing_postgres
40test_namestore_api_monitoring_existing_sqlite
41test_namestore_api_monitoring_flat
42test_namestore_api_monitoring_postgres
43test_namestore_api_monitoring_sqlite
44test_namestore_api_remove_flat
45test_namestore_api_remove_not_existing_record_flat
46test_namestore_api_remove_not_existing_record_postgres
47test_namestore_api_remove_not_existing_record_sqlite
48test_namestore_api_remove_postgres
49test_namestore_api_remove_sqlite
50test_namestore_api_store_flat
51test_namestore_api_store_postgres
52test_namestore_api_store_sqlite
53test_namestore_api_store_update_flat
54test_namestore_api_store_update_postgres
55test_namestore_api_store_update_sqlite
56test_namestore_api_zone_iteration_flat
57test_namestore_api_zone_iteration_nick_flat
58test_namestore_api_zone_iteration_nick_postgres
59test_namestore_api_zone_iteration_nick_sqlite
60test_namestore_api_zone_iteration_postgres
61test_namestore_api_zone_iteration_specific_zone_flat
62test_namestore_api_zone_iteration_specific_zone_postgres
63test_namestore_api_zone_iteration_specific_zone_sqlite
64test_namestore_api_zone_iteration_sqlite
65test_namestore_api_zone_iteration_stop_flat
66test_namestore_api_zone_iteration_stop_postgres
67test_namestore_api_zone_iteration_stop_sqlite
68test_namestore_api_zone_to_name_flat
69test_namestore_api_zone_to_name_postgres
70test_namestore_api_zone_to_name_sqlite
diff --git a/src/namestore/gnunet-zoneimport.c b/src/namestore/gnunet-zoneimport.c
index f8e382760..e24cb26dd 100644
--- a/src/namestore/gnunet-zoneimport.c
+++ b/src/namestore/gnunet-zoneimport.c
@@ -178,7 +178,7 @@ struct Request
178 /** 178 /**
179 * At what time does the (earliest) of the returned records 179 * At what time does the (earliest) of the returned records
180 * for this name expire? At this point, we need to re-fetch 180 * for this name expire? At this point, we need to re-fetch
181 * the record. 181 * the record.
182 */ 182 */
183 struct GNUNET_TIME_Absolute expires; 183 struct GNUNET_TIME_Absolute expires;
184 184
@@ -189,7 +189,7 @@ struct Request
189 * NAMESTORE operation. 189 * NAMESTORE operation.
190 */ 190 */
191 struct GNUNET_TIME_Absolute op_start_time; 191 struct GNUNET_TIME_Absolute op_start_time;
192 192
193 /** 193 /**
194 * How often did we issue this query? (And failed, reset 194 * How often did we issue this query? (And failed, reset
195 * to zero once we were successful.) 195 * to zero once we were successful.)
@@ -240,7 +240,7 @@ static unsigned int lookups;
240 240
241/** 241/**
242 * Number of records we had cached. 242 * Number of records we had cached.
243 */ 243 */
244static unsigned int cached; 244static unsigned int cached;
245 245
246/** 246/**