HTTP REST: minor fixes

1) const-ify internal helper ParseHashStr()

2) use HTTPError() helper when returning HTTP_NOT_FOUND
This commit is contained in:
Jeff Garzik
2014-11-18 10:27:45 -05:00
parent 9445b876bd
commit 7715c84747
2 changed files with 3 additions and 3 deletions

View File

@@ -957,7 +957,7 @@ void ServiceConnection(AcceptedConnection *conn)
break;
} else {
conn->stream() << HTTPReply(HTTP_NOT_FOUND, "", false) << std::flush;
conn->stream() << HTTPError(HTTP_NOT_FOUND, false) << std::flush;
break;
}
}