aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/local-store.cc
diff options
context:
space:
mode:
authorBen Burdette <bburdette@gmail.com>2020-05-13 10:02:18 -0600
committerBen Burdette <bburdette@gmail.com>2020-05-13 10:02:18 -0600
commitc79d4addab7ea476f551bc8727e4d1f27adcef31 (patch)
treeace9cce47341e481f7f4502cc83bfc20054dda49 /src/libstore/local-store.cc
parentbfca5fc395bdaf5823413e1a1679f1b0b6db29dd (diff)
consistent capitalization
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r--src/libstore/local-store.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc
index 59d551032..194eefc78 100644
--- a/src/libstore/local-store.cc
+++ b/src/libstore/local-store.cc
@@ -1244,7 +1244,7 @@ bool LocalStore::verifyStore(bool checkContents, RepairFlag repair)
if (hash != link.name) {
logError(
ErrorInfo {
- .name = "Invalid Hash",
+ .name = "Invalid hash",
.hint = hintfmt(
"link '%s' was modified! expected hash '%s', got '%s'",
linkPath, link.name, hash)
@@ -1283,7 +1283,7 @@ bool LocalStore::verifyStore(bool checkContents, RepairFlag repair)
if (info->narHash != nullHash && info->narHash != current.first) {
logError(
ErrorInfo {
- .name = "Invalid Hash - Path Modified",
+ .name = "Invalid hash - path modified",
.hint = hintfmt("path '%s' was modified! expected hash '%s', got '%s'",
printStorePath(i), info->narHash.to_string(), current.first.to_string())
});