diff --git a/tools/git/gitmaild b/tools/git/gitmaild index a90aabb90da7db6ac363427f45f41bf2c46ebc4c..248c05924047e2dc51595706c0e06614f22c4bce 100755 --- a/tools/git/gitmaild +++ b/tools/git/gitmaild @@ -172,9 +172,9 @@ while (my $connection = $listen_socket->accept()) { # This means it worked, but we are not going to return any # content to the caller if ($verbose) { - print "Returing status code " . RC_NO_CONTENT . "\n"; + print "Returing status code " . RC_OK . "\n"; } - $connection->send_status_line(RC_NO_CONTENT); + $connection->send_status_line(RC_OK); $connection->close(); exit 0; }