You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fu...@apache.org on 2013/05/16 14:49:17 UTC

svn commit: r1483325 - /httpd/httpd/trunk/modules/lua/lua_request.h

Author: fuankg
Date: Thu May 16 12:49:16 2013
New Revision: 1483325

URL: http://svn.apache.org/r1483325
Log:
Moved header protection to the top.

Modified:
    httpd/httpd/trunk/modules/lua/lua_request.h

Modified: httpd/httpd/trunk/modules/lua/lua_request.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/lua/lua_request.h?rev=1483325&r1=1483324&r2=1483325&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/lua/lua_request.h (original)
+++ httpd/httpd/trunk/modules/lua/lua_request.h Thu May 16 12:49:16 2013
@@ -15,11 +15,12 @@
  * limitations under the License.
  */
 
-#include "mod_lua.h"
-#include "util_varbuf.h"
 #ifndef _LUA_REQUEST_H_
 #define _LUA_REQUEST_H_
 
+#include "mod_lua.h"
+#include "util_varbuf.h"
+
 AP_LUA_DECLARE(void) ap_lua_load_request_lmodule(lua_State *L, apr_pool_t *p);
 AP_LUA_DECLARE(void) ap_lua_push_connection(lua_State *L, conn_rec *r);
 AP_LUA_DECLARE(void) ap_lua_push_server(lua_State *L, server_rec *r);