comparison src/http/modules/ngx_http_xslt_filter_module.c @ 6922:a72886067bbb

Added missing static specifiers.
author Eran Kornblau <erankor@gmail.com>
date Thu, 02 Mar 2017 08:46:00 -0500
parents e491b26fa5a1
children 99934aade555
comparison
equal deleted inserted replaced
6921:7fca6f60d5ca 6922:a72886067bbb
107 static ngx_int_t ngx_http_xslt_filter_preconfiguration(ngx_conf_t *cf); 107 static ngx_int_t ngx_http_xslt_filter_preconfiguration(ngx_conf_t *cf);
108 static ngx_int_t ngx_http_xslt_filter_init(ngx_conf_t *cf); 108 static ngx_int_t ngx_http_xslt_filter_init(ngx_conf_t *cf);
109 static void ngx_http_xslt_filter_exit(ngx_cycle_t *cycle); 109 static void ngx_http_xslt_filter_exit(ngx_cycle_t *cycle);
110 110
111 111
112 ngx_str_t ngx_http_xslt_default_types[] = { 112 static ngx_str_t ngx_http_xslt_default_types[] = {
113 ngx_string("text/xml"), 113 ngx_string("text/xml"),
114 ngx_null_string 114 ngx_null_string
115 }; 115 };
116 116
117 117