← Back to team overview

zorba-coders team mailing list archive

[Merge] lp:~paul-lucas/zorba/bug-933979 into lp:zorba

 

Paul J. Lucas has proposed merging lp:~paul-lucas/zorba/bug-933979 into lp:zorba.

Requested reviews:
  Juan Zacarias (juan457)
  Matthias Brantner (matthias-brantner)
  Rodolfo Ochoa (rodolfo-ocho)
  Paul J. Lucas (paul-lucas)
Related bugs:
  Bug #933979 in Zorba: "http module parse_content_type() has wrong return type"
  https://bugs.launchpad.net/zorba/+bug/933979

For more details, see:
https://code.launchpad.net/~paul-lucas/zorba/bug-933979/+merge/93532

Fixed return type.
-- 
https://code.launchpad.net/~paul-lucas/zorba/bug-933979/+merge/93532
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'modules/com/zorba-xquery/www/modules/http-client.xq.src/http_response_parser.cpp'
--- modules/com/zorba-xquery/www/modules/http-client.xq.src/http_response_parser.cpp	2012-02-16 14:11:02 +0000
+++ modules/com/zorba-xquery/www/modules/http-client.xq.src/http_response_parser.cpp	2012-02-17 05:41:29 +0000
@@ -34,7 +34,7 @@
 
 namespace zorba {
 
-static bool parse_content_type( std::string const &s, std::string *mime_type,
+static void parse_content_type( std::string const &s, std::string *mime_type,
                                 std::string *charset ) {
   std::string::size_type pos = s.find( ';' );
   *mime_type = s.substr( 0, pos );


Follow ups