about summary refs log tree commit homepage
path: root/ext/http11/http11_parser_common.rl
diff options
context:
space:
mode:
authorevanweaver <evanweaver@19e92222-5c0b-0410-8929-a290d50e31e9>2007-10-17 07:10:43 +0000
committerevanweaver <evanweaver@19e92222-5c0b-0410-8929-a290d50e31e9>2007-10-17 07:10:43 +0000
commit954d96c7e8c9ff11e886b23b6b4499387ec6f56b (patch)
tree0197e60cae707d72d1f79c0e13c59c46664eed4c /ext/http11/http11_parser_common.rl
parent594f6fe42cba5b21b67b3492e1835a169b5a6c1d (diff)
downloadunicorn-954d96c7e8c9ff11e886b23b6b4499387ec6f56b.tar.gz
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@675 19e92222-5c0b-0410-8929-a290d50e31e9
Diffstat (limited to 'ext/http11/http11_parser_common.rl')
-rw-r--r--ext/http11/http11_parser_common.rl3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/http11/http11_parser_common.rl b/ext/http11/http11_parser_common.rl
index 4652e33..a70d4da 100644
--- a/ext/http11/http11_parser_common.rl
+++ b/ext/http11/http11_parser_common.rl
@@ -1,6 +1,6 @@
 %%{
   
-  machine http_parser;
+  machine http_parser_common;
 
 #### HTTP PROTOCOL GRAMMAR
 # line endings
@@ -50,4 +50,5 @@
   Request = Request_Line ( message_header )* ( CRLF @done );
 
 main := Request;
+
 }%%