1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00
freebsd-ports/www/websh/files/patch-response_ap.c
Mikhail Teterin cf98741f16 Patch an ancient upstream bug uncovered on HEAD by the new compiler
warning (-Wmisleading-indentation). Bump PORTREVISION...

Glory be to LLVM and -Werror.

Reported by:	pkg-fallout
2020-03-17 02:46:39 +00:00

21 lines
510 B
C

Patch an ancient bug, uncovered by clang10's new warning-flag...
-mi
--- ../generic/response_ap.c 2009-05-22 06:13:35.000000000 -0400
+++ ../generic/response_ap.c 2020-03-16 22:40:32.845609000 -0400
@@ -69,4 +69,6 @@
r->status_line = ap_pstrdup(r->pool, ++response);
#else /* APACHE2 */
+ {
+
r->status_line = (char *) apr_pstrdup(r->pool, ++response);
/* as of Apache 2.2.1, r->status_line must be in line with
@@ -80,5 +82,5 @@
response[3] = tmp;
}
-
+ }
#endif /* APACHE2 */
}