summaryrefslogtreecommitdiffstats
path: root/modules/md/mod_md_drive.c
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2019-08-05 12:27:34 +0200
committerStefan Eissing <icing@apache.org>2019-08-05 12:27:34 +0200
commit09b2410688888c0f39ee780e35a51ba06469f382 (patch)
tree18e4445bf6c65f388729a98cd8edce077d02d6df /modules/md/mod_md_drive.c
parentset PCRE_DOTALL by default (diff)
downloadapache2-09b2410688888c0f39ee780e35a51ba06469f382.tar.xz
apache2-09b2410688888c0f39ee780e35a51ba06469f382.zip
* mod_md: fix compiler warnings
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1864425 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--modules/md/mod_md_drive.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/md/mod_md_drive.c b/modules/md/mod_md_drive.c
index 670c7e7910..31fdc27225 100644
--- a/modules/md/mod_md_drive.c
+++ b/modules/md/mod_md_drive.c
@@ -149,7 +149,7 @@ static apr_status_t send_notification(md_drive_ctx *dctx, md_job_t *job, const m
const char * const *argv;
const char *cmdline;
int exit_code;
- apr_status_t rv;
+ apr_status_t rv = APR_SUCCESS;
if (!strcmp("renewed", reason)) {
if (dctx->mc->notify_cmd) {