aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/test_helpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/test_helpers.h')
-rw-r--r--src/microhttpd/test_helpers.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/microhttpd/test_helpers.h b/src/microhttpd/test_helpers.h
index 993d0718..d3804bc4 100644
--- a/src/microhttpd/test_helpers.h
+++ b/src/microhttpd/test_helpers.h
@@ -34,8 +34,8 @@
34 * @param prog_name program name, may include path 34 * @param prog_name program name, may include path
35 * @param marker marker to look for. 35 * @param marker marker to look for.
36 * @return zero if any parameter is NULL or empty string or 36 * @return zero if any parameter is NULL or empty string or
37 * @prog_name ends with slash or @marker is not found in 37 * @a prog_name ends with slash or @a marker is not found in
38 * program name, non-zero if @maker is found in program 38 * program name, non-zero if @a maker is found in program
39 * name. 39 * name.
40 */ 40 */
41static int 41static int
@@ -61,7 +61,7 @@ has_in_name (const char *prog_name, const char *marker)
61 } 61 }
62 if (name_pos == pos) 62 if (name_pos == pos)
63 return 0; 63 return 0;
64 return strstr (prog_name + name_pos, marker) != (char*) 0; 64 return strstr (prog_name + name_pos, marker) != (char *) 0;
65} 65}
66 66
67 67