summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--guix/store.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/guix/store.scm b/guix/store.scm
index 9b3879b4a7..683e125b20 100644
--- a/guix/store.scm
+++ b/guix/store.scm
@@ -557,10 +557,10 @@ for this connection will be pinned. Return a server object."
(make-bytevector 8192))))
(write-int %worker-magic-1 port)
(let ((r (read-int port)))
- (and (eqv? r %worker-magic-2)
+ (and (= r %worker-magic-2)
(let ((v (read-int port)))
- (and (eqv? (protocol-major %protocol-version)
- (protocol-major v))
+ (and (= (protocol-major %protocol-version)
+ (protocol-major v))
(begin
(write-int %protocol-version port)
(when (>= (protocol-minor v) 14)