fixed typo that caused wget to segfault
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>
Wed, 6 Jan 2010 02:27:03 +0000 (21:27 -0500)
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>
Wed, 6 Jan 2010 02:27:03 +0000 (21:27 -0500)
msva

diff --git a/msva b/msva
index 75e28f68800b1457396f7cce93b7118a019ed4d6..738d4c2be91c00df0df71770adfd775244621a4a 100755 (executable)
--- a/msva
+++ b/msva
@@ -30,7 +30,7 @@ use strict;
       printf("HTTP/1.0 %s\r\nContent-Type: application/json\r\n\r\n%s", $status, to_json ($object));
 
     } else {
-      printf("HTTP/1.0  Bad Request -- not handled by Monkeysphere validation agent\r\nContent-Type: text/plain\r\n\r\nBad Request -- the path:\r\n   %s\r\nis not handled by the MonkeySphere validation agent.\r\nPlease try one of the following paths instead:\r\n\r\n%s\r\n", $path, ' * '.join("\r\n * ", keys %dispatch) );
+      printf("HTTP/1.0 400 Bad Request -- not handled by Monkeysphere validation agent\r\nContent-Type: text/plain\r\n\r\nBad Request -- the path:\r\n   %s\r\nis not handled by the MonkeySphere validation agent.\r\nPlease try one of the following paths instead:\r\n\r\n%s\r\n", $path, ' * '.join("\r\n * ", keys %dispatch) );
     }
   }