]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Travis fixes
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Sun, 27 Nov 2016 21:17:25 +0000 (16:17 -0500)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Sun, 27 Nov 2016 21:17:25 +0000 (16:17 -0500)
src/lib/log.c
src/modules/rlm_rest/rest.c

index dc38535ad0c86316804d51d7ff167865b7e0c1d1..9edb58a4f630d8828ada37eee4829bb830feddcf 100644 (file)
@@ -240,7 +240,6 @@ char const *fr_strerror(void)
 char const *fr_syserror(int num)
 {
        char *buffer, *p, *end;
-       int ret;
 
        buffer = fr_syserror_buffer;
        if (!buffer) {
index 1c450f839fbc710b530a319de494378d577f1f18..9cb933681f0f40f4b8a8b8298c439f5ae0be4086 100644 (file)
@@ -1677,15 +1677,19 @@ error:
  *
  * Sets up callbacks for all response processing (buffers and body data).
  *
- * @param[in] instance configuration data.
- * @param[in] section configuration data.
- * @param[in] handle to configure.
- * @param[in] request Current request.
- * @param[in] method to use (HTTP verbs PUT, POST, DELETE etc...).
- * @param[in] type Content-Type for request encoding, also sets the default for decoding.
- * @param[in] username to use for HTTP authentication, may be NULL in which case configured defaults will be used.
- * @param[in] password to use for HTTP authentication, may be NULL in which case configured defaults will be used.
- * @param[in] uri buffer containing the expanded URI to send the request to.
+ * @param[in] instance         configuration data.
+ * @param[in] t                        Thread specific instance data.
+ * @param[in] section          configuration data.
+ * @param[in] handle           to configure.
+ * @param[in] request          Current request.
+ * @param[in] method           to use (HTTP verbs PUT, POST, DELETE etc...).
+ * @param[in] type             Content-Type for request encoding, also sets
+ *                             the default for decoding.
+ * @param[in] username         to use for HTTP authentication, may be NULL in
+ *                             which case configured defaults will be used.
+ * @param[in] password         to use for HTTP authentication, may be NULL in
+ *                             which case configured defaults will be used.
+ * @param[in] uri              buffer containing the expanded URI to send the request to.
  * @return
  *     - 0 on success (all opts configured).
  *     - -1 on failure.