]> git.pld-linux.org Git - packages/apache-mod_proxy_html.git/blob - format-security.patch
- fix -Wformat-security errors
[packages/apache-mod_proxy_html.git] / format-security.patch
1 --- apache-mod_proxy_html-3.0.1/mod_proxy_html.c~       2013-05-05 21:50:26.368139682 +0200
2 +++ apache-mod_proxy_html-3.0.1/mod_proxy_html.c        2013-05-05 21:50:59.228139444 +0200
3 @@ -782,7 +782,7 @@
4      proxy_html_conf* cfg
5          = ap_get_module_config(f->r->per_dir_config, &proxy_html_module);
6      if ( cfg->verbose ) {
7 -      ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, f->r, errmsg) ;
8 +      ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, f->r, "%s", errmsg) ;
9      }
10  #endif
11      ap_remove_output_filter(f) ;
This page took 0.087341 seconds and 3 git commands to generate.