aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/arm/gnunet-service-arm.c2
-rw-r--r--src/curl/curl.c2
-rw-r--r--src/dht/dht_api.c2
-rw-r--r--src/dht/gnunet-service-dht_clients.c2
-rw-r--r--src/dht/gnunet-service-dht_routing.c2
-rw-r--r--src/dns/gnunet-helper-dns.c2
-rw-r--r--src/gns/gnunet-gns-proxy.c2
-rw-r--r--src/gns/gnunet-service-gns_resolver.c6
-rw-r--r--src/gns/test_gns_proxy.c2
-rw-r--r--src/nse/nse_api.c2
-rw-r--r--src/revocation/gnunet-service-revocation.c2
-rw-r--r--src/revocation/revocation_api.c4
12 files changed, 15 insertions, 15 deletions
diff --git a/src/arm/gnunet-service-arm.c b/src/arm/gnunet-service-arm.c
index 263c99cc4..b412094d3 100644
--- a/src/arm/gnunet-service-arm.c
+++ b/src/arm/gnunet-service-arm.c
@@ -1564,7 +1564,7 @@ shutdown_task (void *cls)
1564 do_shutdown (); 1564 do_shutdown ();
1565 else 1565 else
1566 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 1566 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1567 "Delaying shutdown, have %u childs still running\n", 1567 "Delaying shutdown, have %u children still running\n",
1568 list_count (running_head)); 1568 list_count (running_head));
1569} 1569}
1570 1570
diff --git a/src/curl/curl.c b/src/curl/curl.c
index d89c97176..65e1a7183 100644
--- a/src/curl/curl.c
+++ b/src/curl/curl.c
@@ -545,7 +545,7 @@ GNUNET_CURL_job_add_raw (struct GNUNET_CURL_Context *ctx,
545 * @param ctx context to execute the job in 545 * @param ctx context to execute the job in
546 * @param eh curl easy handle for the request, will be executed AND 546 * @param eh curl easy handle for the request, will be executed AND
547 * cleaned up. NOTE: the handle should _never_ have gotten 547 * cleaned up. NOTE: the handle should _never_ have gotten
548 * any headers list, as that would then be ovverridden by 548 * any headers list, as that would then be overridden by
549 * @a jcc. Therefore, always pass custom headers as the 549 * @a jcc. Therefore, always pass custom headers as the
550 * @a job_headers parameter. 550 * @a job_headers parameter.
551 * @param job_headers extra headers to add for this request 551 * @param job_headers extra headers to add for this request
diff --git a/src/dht/dht_api.c b/src/dht/dht_api.c
index ee56c852f..ffcfba997 100644
--- a/src/dht/dht_api.c
+++ b/src/dht/dht_api.c
@@ -295,7 +295,7 @@ send_get (struct GNUNET_DHT_GetHandle *gh)
295/** 295/**
296 * Send GET message(s) for indicating which results are already known 296 * Send GET message(s) for indicating which results are already known
297 * for a @a get_handle to DHT. Complex as we need to send the list of 297 * for a @a get_handle to DHT. Complex as we need to send the list of
298 * known results, which means we may need mulitple messages to block 298 * known results, which means we may need multiple messages to block
299 * known results from the result set. 299 * known results from the result set.
300 * 300 *
301 * @param gh GET to generate messages for 301 * @param gh GET to generate messages for
diff --git a/src/dht/gnunet-service-dht_clients.c b/src/dht/gnunet-service-dht_clients.c
index 5eb3115f4..dfa8ee380 100644
--- a/src/dht/gnunet-service-dht_clients.c
+++ b/src/dht/gnunet-service-dht_clients.c
@@ -136,7 +136,7 @@ struct ClientQueryRecord
136 136
137 137
138/** 138/**
139 * Struct containing paremeters of monitoring requests. 139 * Struct containing parameters of monitoring requests.
140 */ 140 */
141struct ClientMonitorRecord 141struct ClientMonitorRecord
142{ 142{
diff --git a/src/dht/gnunet-service-dht_routing.c b/src/dht/gnunet-service-dht_routing.c
index 75513f833..b05fb76d3 100644
--- a/src/dht/gnunet-service-dht_routing.c
+++ b/src/dht/gnunet-service-dht_routing.c
@@ -166,7 +166,7 @@ process (void *cls,
166 166
167 if ((rr->type != GNUNET_BLOCK_TYPE_ANY) && 167 if ((rr->type != GNUNET_BLOCK_TYPE_ANY) &&
168 (rr->type != pc->type)) 168 (rr->type != pc->type))
169 return GNUNET_OK; /* type missmatch */ 169 return GNUNET_OK; /* type mismatch */
170 170
171 if (0 != (rr->options & GNUNET_DHT_RO_RECORD_ROUTE)) 171 if (0 != (rr->options & GNUNET_DHT_RO_RECORD_ROUTE))
172 { 172 {
diff --git a/src/dns/gnunet-helper-dns.c b/src/dns/gnunet-helper-dns.c
index a9c2c6d28..f0e39464d 100644
--- a/src/dns/gnunet-helper-dns.c
+++ b/src/dns/gnunet-helper-dns.c
@@ -250,7 +250,7 @@ fork_and_exec (const char *file,
250/** 250/**
251 * Creates a tun-interface called @a dev; 251 * Creates a tun-interface called @a dev;
252 * 252 *
253 * @param dev is asumed to point to a char[IFNAMSIZ] 253 * @param dev is assumed to point to a char[IFNAMSIZ]
254 * if *dev == '\\0', uses the name supplied by the kernel; 254 * if *dev == '\\0', uses the name supplied by the kernel;
255 * @return the fd to the tun or -1 on error 255 * @return the fd to the tun or -1 on error
256 */ 256 */
diff --git a/src/gns/gnunet-gns-proxy.c b/src/gns/gnunet-gns-proxy.c
index d38204ef1..833a8da01 100644
--- a/src/gns/gnunet-gns-proxy.c
+++ b/src/gns/gnunet-gns-proxy.c
@@ -21,7 +21,7 @@
21 * @author Martin Schanzenbach 21 * @author Martin Schanzenbach
22 * @author Christian Grothoff 22 * @author Christian Grothoff
23 * @file src/gns/gnunet-gns-proxy.c 23 * @file src/gns/gnunet-gns-proxy.c
24 * @brief HTTP(S) proxy that rewrites URIs and fakes certificats to make GNS work 24 * @brief HTTP(S) proxy that rewrites URIs and fakes certificates to make GNS work
25 * with legacy browsers 25 * with legacy browsers
26 * 26 *
27 * TODO: 27 * TODO:
diff --git a/src/gns/gnunet-service-gns_resolver.c b/src/gns/gnunet-service-gns_resolver.c
index d9d0d3099..49c1b340a 100644
--- a/src/gns/gnunet-service-gns_resolver.c
+++ b/src/gns/gnunet-service-gns_resolver.c
@@ -127,7 +127,7 @@ struct Gns2DnsPending
127 127
128 128
129/** 129/**
130 * Handle to a currenty pending resolution. On result (positive or 130 * Handle to a currently pending resolution. On result (positive or
131 * negative) the #GNS_ResultProcessor is called. 131 * negative) the #GNS_ResultProcessor is called.
132 */ 132 */
133struct GNS_ResolverHandle; 133struct GNS_ResolverHandle;
@@ -287,7 +287,7 @@ struct VpnContext
287 287
288 288
289/** 289/**
290 * Handle to a currenty pending resolution. On result (positive or 290 * Handle to a currently pending resolution. On result (positive or
291 * negative) the #GNS_ResultProcessor is called. 291 * negative) the #GNS_ResultProcessor is called.
292 */ 292 */
293struct GNS_ResolverHandle 293struct GNS_ResolverHandle
@@ -741,7 +741,7 @@ resolver_lookup_get_next_label (struct GNS_ResolverHandle *rh)
741 741
742 742
743/** 743/**
744 * Gives the cummulative result obtained to the callback and clean up the request. 744 * Gives the cumulative result obtained to the callback and clean up the request.
745 * 745 *
746 * @param rh resolution process that has culminated in a result 746 * @param rh resolution process that has culminated in a result
747 */ 747 */
diff --git a/src/gns/test_gns_proxy.c b/src/gns/test_gns_proxy.c
index 579de774f..e09db5787 100644
--- a/src/gns/test_gns_proxy.c
+++ b/src/gns/test_gns_proxy.c
@@ -211,7 +211,7 @@ mhd_ahc (void *cls,
211 } 211 }
212 *unused = NULL; 212 *unused = NULL;
213 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 213 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
214 "MHD sends respose for request to URL `%s'\n", url); 214 "MHD sends response for request to URL `%s'\n", url);
215 response = MHD_create_response_from_buffer (strlen (url), 215 response = MHD_create_response_from_buffer (strlen (url),
216 (void *) url, 216 (void *) url,
217 MHD_RESPMEM_MUST_COPY); 217 MHD_RESPMEM_MUST_COPY);
diff --git a/src/nse/nse_api.c b/src/nse/nse_api.c
index 5ed596bf2..23daa7f12 100644
--- a/src/nse/nse_api.c
+++ b/src/nse/nse_api.c
@@ -157,7 +157,7 @@ reconnect (void *cls)
157 * Connect to the network size estimation service. 157 * Connect to the network size estimation service.
158 * 158 *
159 * @param cfg the configuration to use 159 * @param cfg the configuration to use
160 * @param func funtion to call with network size estimate 160 * @param func function to call with network size estimate
161 * @param func_cls closure to pass to @a func 161 * @param func_cls closure to pass to @a func
162 * @return handle to use 162 * @return handle to use
163 */ 163 */
diff --git a/src/revocation/gnunet-service-revocation.c b/src/revocation/gnunet-service-revocation.c
index 0fa92f4a6..863289aae 100644
--- a/src/revocation/gnunet-service-revocation.c
+++ b/src/revocation/gnunet-service-revocation.c
@@ -766,7 +766,7 @@ core_init (void *cls,
766 * to accept it, otherwise the request will be refused 766 * to accept it, otherwise the request will be refused
767 * Note that we can't just return value from the listen callback, 767 * Note that we can't just return value from the listen callback,
768 * as it is also necessary to specify the set we want to do the 768 * as it is also necessary to specify the set we want to do the
769 * operation with, whith sometimes can be derived from the context 769 * operation with, which sometimes can be derived from the context
770 * message. It's necessary to specify the timeout. 770 * message. It's necessary to specify the timeout.
771 */ 771 */
772static void 772static void
diff --git a/src/revocation/revocation_api.c b/src/revocation/revocation_api.c
index 791c3d008..5cf191847 100644
--- a/src/revocation/revocation_api.c
+++ b/src/revocation/revocation_api.c
@@ -154,7 +154,7 @@ handle_revocation_query_response (void *cls,
154 * 154 *
155 * @param cfg the configuration to use 155 * @param cfg the configuration to use
156 * @param key key to check for revocation 156 * @param key key to check for revocation
157 * @param func funtion to call with the result of the check 157 * @param func function to call with the result of the check
158 * @param func_cls closure to pass to @a func 158 * @param func_cls closure to pass to @a func
159 * @return handle to use in #GNUNET_REVOCATION_query_cancel to stop REVOCATION from invoking the callback 159 * @return handle to use in #GNUNET_REVOCATION_query_cancel to stop REVOCATION from invoking the callback
160 */ 160 */
@@ -291,7 +291,7 @@ handle_revocation_response (void *cls,
291 * @param ts revocation timestamp 291 * @param ts revocation timestamp
292 * @param pow proof of work to use (should have been created by 292 * @param pow proof of work to use (should have been created by
293 * iteratively calling #GNUNET_REVOCATION_check_pow) 293 * iteratively calling #GNUNET_REVOCATION_check_pow)
294 * @param func funtion to call with the result of the check 294 * @param func function to call with the result of the check
295 * (called with `is_valid` being #GNUNET_NO if 295 * (called with `is_valid` being #GNUNET_NO if
296 * the revocation worked). 296 * the revocation worked).
297 * @param func_cls closure to pass to @a func 297 * @param func_cls closure to pass to @a func