aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_client_lib.h4
-rw-r--r--src/util/client.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_client_lib.h b/src/include/gnunet_client_lib.h
index 687083ad4..6f4190c5b 100644
--- a/src/include/gnunet_client_lib.h
+++ b/src/include/gnunet_client_lib.h
@@ -105,8 +105,8 @@ struct GNUNET_CLIENT_TransmitHandle;
105 105
106/** 106/**
107 * Ask the client to call us once the specified number of bytes 107 * Ask the client to call us once the specified number of bytes
108 * are free in the transmission buffer. May call the notify 108 * are free in the transmission buffer. Will never call the @a notify
109 * method immediately if enough space is available. 109 * callback in this task, but always first go into the scheduler.
110 * 110 *
111 * @param client connection to the service 111 * @param client connection to the service
112 * @param size number of bytes to send 112 * @param size number of bytes to send
diff --git a/src/util/client.c b/src/util/client.c
index 02bec5a8f..15d52ec60 100644
--- a/src/util/client.c
+++ b/src/util/client.c
@@ -1181,8 +1181,8 @@ client_notify (void *cls, size_t size, void *buf)
1181 1181
1182/** 1182/**
1183 * Ask the client to call us once the specified number of bytes 1183 * Ask the client to call us once the specified number of bytes
1184 * are free in the transmission buffer. May call the notify 1184 * are free in the transmission buffer. Will never call the @a notify
1185 * method immediately if enough space is available. 1185 * callback in this task, but always first go into the scheduler.
1186 * 1186 *
1187 * @param client connection to the service 1187 * @param client connection to the service
1188 * @param size number of bytes to send 1188 * @param size number of bytes to send