diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-12-15 23:50:24 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-12-16 16:28:07 +0100 |
commit | 8327e733966cc4a93dfaadd1a761ca1088078baa (patch) | |
tree | 3aa6eca1d5f83a394e98657f765439ffd034ec35 /nix/libutil | |
parent | 938078a34d06a3053c14c420dfe0430366a8f47b (diff) | |
download | patches-8327e733966cc4a93dfaadd1a761ca1088078baa.tar patches-8327e733966cc4a93dfaadd1a761ca1088078baa.tar.gz |
daemon: Use unbranded phrases in comments and messages.
* nix/libstore/build.cc, nix/libstore/globals.cc,
nix/libstore/gc.cc, nix/libstore/local-store.cc,
nix/libstore/optimise-store.cc, nix/libstore/store-api.cc,
nix/libutil/archive.cc, nix/nix-daemon/nix-daemon.cc: Replace "Nix
store" by "store", and "Nix daemon" by "build daemon".
Diffstat (limited to 'nix/libutil')
-rw-r--r-- | nix/libutil/archive.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/libutil/archive.cc b/nix/libutil/archive.cc index 2599030454..54bcd21f93 100644 --- a/nix/libutil/archive.cc +++ b/nix/libutil/archive.cc @@ -260,7 +260,7 @@ void parseDump(ParseSink & sink, Source & source) decoded. Ignore and throw the exception below. */ } if (version != archiveVersion1) - throw badArchive("input doesn't look like a Nix archive"); + throw badArchive("input doesn't look like a normalized archive"); parse(sink, source, ""); } |