2002/10/04 02:09:24
[org.ibex.core.git] / src / org / xwt / HTTP.java
index e29d31b..22a0761 100644 (file)
@@ -363,9 +363,9 @@ public class HTTP {
         PrintWriter pw = new PrintWriter(new OutputStreamWriter(sock.getOutputStream()));
         if (content != null) {
             pw.print("POST " + path + " HTTP/1.1\r\n");
-           int contentLength = content.substring(0, 2).equals("\r\n") ?
-               content.length() - 2 :
-               (content.length() - content.indexOf("\r\n\r\n") - 4);
+        int contentLength = content.substring(0, 2).equals("\r\n") ?
+        content.length() - 2 :
+        (content.length() - content.indexOf("\r\n\r\n") - 4);
             pw.print("Content-Length: " + contentLength + "\r\n");
             if (contentType != null) pw.print("Content-Type: " + contentType + "\r\n");
         } else {