summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--auth_mellon_config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth_mellon_config.c b/auth_mellon_config.c
index e2323d3..bf3347a 100644
--- a/auth_mellon_config.c
+++ b/auth_mellon_config.c
@@ -390,7 +390,7 @@ static const char *am_set_endpoint_path(cmd_parms *cmd,
/* Make sure that the path ends with '/'. */
if(strlen(arg) == 0 || arg[strlen(arg) - 1] != '/') {
- d->endpoint_path = apr_pstrcat(cmd->pool, arg, "/", 0);
+ d->endpoint_path = apr_pstrcat(cmd->pool, arg, "/", NULL);
} else {
d->endpoint_path = arg;
}