]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/httpresponse.cpp
Se corrige un bug.
[z.facultad/75.42/plaqui.git] / Server / src / httpresponse.cpp
index 5a5b2463d2d22e7c59324a3dcbce36071ae486c8..ab26bd3aff5c6a7198ac11cda624ca52a87609a8 100644 (file)
@@ -128,7 +128,7 @@ ostream& operator<<(ostream& os, const HTTPResponse& resp) {
 #ifdef DEBUG
        cerr << __FILE__ << ": operator<<()" << endl;
 #endif // DEBUG
-       os << "HTTP/" << resp.version << " " << resp.status_code << " " << resp.reason << "\r\n";
+       os << "HTTP/" << resp.version << " " << resp.status_code << " " << resp.reason << "\n\r";
        // TODO ver que este bien el \r\l
        os << static_cast<const HTTPMessage&>(resp);
        return os;