Skip to content

Commit

Permalink
Correct the APU version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
minfrin committed Aug 29, 2024
1 parent c9ed2d8 commit 2fd0919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/log.c
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ static int log_apr_status(const ap_errorlog_info *info, const char *arg,
len = apr_snprintf(buf, buflen, "(os 0x%08x)",
status - APR_OS_START_SYSERR);
}
#if (APR_MAJOR_VERSION == 1 && APR_MINOR_VERSION >= 7)
#if (APU_MAJOR_VERSION == 1 && APU_MINOR_VERSION >= 7)
if (status < APR_UTIL_START_STATUS) {
apr_strerror(status, buf + len, buflen - len);
}
Expand Down

0 comments on commit 2fd0919

Please sign in to comment.