about summary refs log tree commit diff
path: root/src/nix-store/nix-store.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix-store/nix-store.cc')
-rw-r--r--src/nix-store/nix-store.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc
index 638d24498821..038f099649b0 100644
--- a/src/nix-store/nix-store.cc
+++ b/src/nix-store/nix-store.cc
@@ -888,7 +888,7 @@ static void opServe(Strings opFlags, Strings opArgs)
                         }
                         break;
                     default:
-                        throw Error(format("Unknown serve query `%1%'") % cmd);
+                        throw Error(format("unknown serve query `%1%'") % cmd);
                 }
                 out.flush();
             }
@@ -897,7 +897,7 @@ static void opServe(Strings opFlags, Strings opArgs)
             dumpPath(readString(in), out);
             break;
         default:
-            throw Error(format("Unknown serve command `%1%'") % cmd);
+            throw Error(format("unknown serve command `%1%'") % cmd);
     }
 }