diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-05-04T10·53+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-05-04T10·53+0200 |
commit | b6c768fb6a341bf1c5fe4a2d2a929415e8519b25 (patch) | |
tree | c09b3177927190c117a0e7fe6dedbf92ce34377b /src | |
parent | 4e17e7a4da4d82c3664b0b691c6a50debcb9e896 (diff) |
nix-daemon: Fix queryPathInfo() backward compatibility
Diffstat (limited to 'src')
-rw-r--r-- | src/nix-daemon/nix-daemon.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/nix-daemon/nix-daemon.cc b/src/nix-daemon/nix-daemon.cc index 60ad85a68831..bc05b85f4923 100644 --- a/src/nix-daemon/nix-daemon.cc +++ b/src/nix-daemon/nix-daemon.cc @@ -518,14 +518,18 @@ static void performOp(ref<LocalStore> store, bool trusted, unsigned int clientVe } stopWork(); if (info) { - to << 1 << info->deriver << printHash(info->narHash) << info->references + if (GET_PROTOCOL_MINOR(clientVersion) >= 17) + to << 1; + to << info->deriver << printHash(info->narHash) << info->references << info->registrationTime << info->narSize; if (GET_PROTOCOL_MINOR(clientVersion) >= 16) { to << info->ultimate << info->sigs; } - } else + } else { + assert(GET_PROTOCOL_MINOR(clientVersion) >= 17); to << 0; + } break; } |