myserver-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[myserver-commit] [SCM] GNU MyServer branch, master, updated. 0_9_2-26-g


From: Giuseppe Scrivano
Subject: [myserver-commit] [SCM] GNU MyServer branch, master, updated. 0_9_2-26-g6d146ec
Date: Mon, 22 Feb 2010 16:21:29 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU MyServer".

The branch, master has been updated
       via  6d146ec8613b6c9c847fb14bab0687d65862e943 (commit)
      from  95371abb2377a4c70503531d45a548dc0a678925 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------


commit 6d146ec8613b6c9c847fb14bab0687d65862e943
Author: Giuseppe Scrivano <address@hidden>
Date:   Mon Feb 22 17:20:58 2010 +0100

    Fix a build error
    
    Bug introduced by: 95371abb2377a4c70503531d45a548dc0a678925

diff --git a/myserver/src/protocol/http/http_header.cpp 
b/myserver/src/protocol/http/http_header.cpp
index 791a37d..c231478 100644
--- a/myserver/src/protocol/http/http_header.cpp
+++ b/myserver/src/protocol/http/http_header.cpp
@@ -31,9 +31,9 @@ using namespace std;
 string* HttpHeader::getValue (const char *name, string *out)
 {
   string key (name);
-  transform (key.begin (), str.end (), str.begin (), ::tolower);
+  transform (key.begin (), key.end (), key.begin (), ::tolower);
 
-  Entry *e = other.get (str);
+  Entry *e = other.get (key);
   if (e)
     {
       if (out)

-----------------------------------------------------------------------

Summary of changes:
 myserver/src/protocol/http/http_header.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU MyServer




reply via email to

[Prev in Thread] Current Thread [Next in Thread]