diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-03-22T17·51+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2009-03-22T17·51+0000 |
commit | 7a57b2920b7f04ab0cdd42687dd183217231549e (patch) | |
tree | fa2e804fcab905ca2dd92c10dbeb4b0a909c654e /src/nix-store | |
parent | 77d272623fb4fd57cf27d4b92a7dc1713a2d4098 (diff) |
* Better error message when nix-store --import is applied to garbage
(previously it would likely say "implementation cannot deal with > 32-bit integers").
Diffstat (limited to 'src/nix-store')
-rw-r--r-- | src/nix-store/nix-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc index 4a70d870a563..28cd1adf4027 100644 --- a/src/nix-store/nix-store.cc +++ b/src/nix-store/nix-store.cc @@ -625,7 +625,7 @@ static void opImport(Strings opFlags, Strings opArgs) FdSource source(STDIN_FILENO); while (true) { - int n = readInt(source); + unsigned long long n = readLongLong(source); if (n == 0) break; if (n != 1) throw Error("input doesn't look like something created by `nix-store --export'"); cout << format("%1%\n") % store->importPath(requireSignature, source) << std::flush; |