Clarify some errors

master
Nick Krichevsky 2018-09-10 22:24:28 -04:00
parent 8d8c4f0097
commit 88b660471f
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ int main(int argc, char* argv[]) {
} else if (serve_result == RESULT_READ_ERROR) {
printf("\tThere was an error reading from the socket.\n");
} else if (serve_result == RESULT_PROCESSING_ERROR) {
printf("\tThere was an error while processing the data from the socket.\n");
printf("\tThere was an error while processing the data from the socket. This may be due to a malformed request.\n");
} else if (serve_result == RESULT_WRITE_ERROR) {
printf("\tThere was an error writing to the socket.\n");
}