error messages start in lowercase

Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
Shea Levy 2014-02-12 07:26:35 -05:00
parent 2246aa77d2
commit 7438f0bc2b
2 changed files with 3 additions and 3 deletions

View File

@ -89,7 +89,7 @@ static void query(std::pair<FdSink, FdSource> & pipes) {
std::cout << readLongLong(pipes.second) << std::endl; std::cout << readLongLong(pipes.second) << std::endl;
} }
} else } else
throw Error(format("Unknown substituter query `%1%'") % cmd); throw Error(format("unknown substituter query `%1%'") % cmd);
std::cout << std::endl; std::cout << std::endl;
} }
} }

View File

@ -888,7 +888,7 @@ static void opServe(Strings opFlags, Strings opArgs)
} }
break; break;
default: default:
throw Error(format("Unknown serve query `%1%'") % cmd); throw Error(format("unknown serve query `%1%'") % cmd);
} }
out.flush(); out.flush();
} }
@ -897,7 +897,7 @@ static void opServe(Strings opFlags, Strings opArgs)
dumpPath(readString(in), out); dumpPath(readString(in), out);
break; break;
default: default:
throw Error(format("Unknown serve command `%1%'") % cmd); throw Error(format("unknown serve command `%1%'") % cmd);
} }
} }