about summary refs log tree commit diff
path: root/src/nix-store/main.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2005-04-08T13·48+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2005-04-08T13·48+0000
commitc702dfca3f5a437866faf190ce7b0869fd1058cb (patch)
treec9b992046f6f0fd71e5b58a63a52eceb564942eb /src/nix-store/main.cc
parent8b70f138e02d62214715f144b133bf1b981911df (diff)
* nix-store: `--substitute' -> `--register-substitutes'.
Diffstat (limited to 'src/nix-store/main.cc')
-rw-r--r--src/nix-store/main.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nix-store/main.cc b/src/nix-store/main.cc
index 4969246775..87fbe58b1b 100644
--- a/src/nix-store/main.cc
+++ b/src/nix-store/main.cc
@@ -394,7 +394,7 @@ static void opQuery(Strings opFlags, Strings opArgs)
 }
 
 
-static void opSubstitute(Strings opFlags, Strings opArgs)
+static void opRegisterSubstitutes(Strings opFlags, Strings opArgs)
 {
     if (!opFlags.empty()) throw UsageError("unknown flag");
     if (!opArgs.empty()) throw UsageError("no arguments expected");
@@ -607,8 +607,8 @@ void run(Strings args)
             op = opPrintFixedPath;
         else if (arg == "--query" || arg == "-q")
             op = opQuery;
-        else if (arg == "--substitute")
-            op = opSubstitute;
+        else if (arg == "--register-substitutes")
+            op = opRegisterSubstitutes;
         else if (arg == "--clear-substitutes")
             op = opClearSubstitutes;
         else if (arg == "--register-validity")