aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-07-25 15:02:26 +0000
committerChristian Grothoff <christian@grothoff.org>2012-07-25 15:02:26 +0000
commit883f76092343cb682016415142245b83c912f816 (patch)
tree1e09c9471a1090414608aef17ecfddb90981b9f2 /src
parentceb3be6d5ce8ebb9a1ca940b67d3e6a74896db6f (diff)
downloadgnunet-883f76092343cb682016415142245b83c912f816.tar.gz
gnunet-883f76092343cb682016415142245b83c912f816.zip
-dox
Diffstat (limited to 'src')
-rw-r--r--src/hostlist/hostlist-client.c2
-rw-r--r--src/include/gnunet_disk_lib.h2
-rw-r--r--src/vpn/gnunet-service-vpn.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/hostlist/hostlist-client.c b/src/hostlist/hostlist-client.c
index 4914573e3..e85c3cae7 100644
--- a/src/hostlist/hostlist-client.c
+++ b/src/hostlist/hostlist-client.c
@@ -470,7 +470,7 @@ download_get_url ()
470} 470}
471 471
472 472
473#define CURL_EASY_SETOPT(c, a, b) do { ret = curl_easy_setopt(c, a, b); if (ret != CURLE_OK) GNUNET_log(GNUNET_ERROR_TYPE_WARNING, _("%s failed at %s:%d: `%s'\n"), "curl_easy_setopt", __FILE__, __LINE__, curl_easy_strerror(ret)); } while (0) 473#define CURL_EASY_SETOPT(c, a, b) do { ret = curl_easy_setopt (c, a, b); if (CURLE_OK != ret) GNUNET_log(GNUNET_ERROR_TYPE_WARNING, _("%s failed at %s:%d: `%s'\n"), "curl_easy_setopt", __FILE__, __LINE__, curl_easy_strerror (ret)); } while (0)
474 474
475 475
476/** 476/**
diff --git a/src/include/gnunet_disk_lib.h b/src/include/gnunet_disk_lib.h
index 9e25cd95a..c0a68bb67 100644
--- a/src/include/gnunet_disk_lib.h
+++ b/src/include/gnunet_disk_lib.h
@@ -679,7 +679,7 @@ GNUNET_DISK_directory_test (const char *fil);
679 * Remove all files in a directory (rm -rf). Call with 679 * Remove all files in a directory (rm -rf). Call with
680 * caution. 680 * caution.
681 * 681 *
682 * @param fileName the file to remove 682 * @param filename the file to remove
683 * @return GNUNET_OK on success, GNUNET_SYSERR on error 683 * @return GNUNET_OK on success, GNUNET_SYSERR on error
684 */ 684 */
685int 685int
diff --git a/src/vpn/gnunet-service-vpn.c b/src/vpn/gnunet-service-vpn.c
index 677b272ea..b8801e5d4 100644
--- a/src/vpn/gnunet-service-vpn.c
+++ b/src/vpn/gnunet-service-vpn.c
@@ -3024,7 +3024,7 @@ test_af (int af)
3024 "socket"); 3024 "socket");
3025 return GNUNET_SYSERR; 3025 return GNUNET_SYSERR;
3026 } 3026 }
3027 close (s); 3027 (void) close (s);
3028 return GNUNET_OK; 3028 return GNUNET_OK;
3029} 3029}
3030 3030