upstream: Logical not bitwise or. ok djm@
OpenBSD-Commit-ID: d4dc855cf04951b93c45caa383e1ac9af0a3b0e5
This commit is contained in:
parent
507b448a24
commit
d1532d9007
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: ssh-agent.c,v 1.272 2021/01/26 11:25:01 dtucker Exp $ */
|
/* $OpenBSD: ssh-agent.c,v 1.273 2021/01/27 00:37:26 dtucker Exp $ */
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
|
@ -438,7 +438,7 @@ process_sign_request2(SocketEntry *e)
|
||||||
|
|
||||||
debug_f("entering");
|
debug_f("entering");
|
||||||
|
|
||||||
if ((msg = sshbuf_new()) == NULL | (data = sshbuf_new()) == NULL)
|
if ((msg = sshbuf_new()) == NULL || (data = sshbuf_new()) == NULL)
|
||||||
fatal_f("sshbuf_new failed");
|
fatal_f("sshbuf_new failed");
|
||||||
if ((r = sshkey_froms(e->request, &key)) != 0 ||
|
if ((r = sshkey_froms(e->request, &key)) != 0 ||
|
||||||
(r = sshbuf_get_stringb(e->request, data)) != 0 ||
|
(r = sshbuf_get_stringb(e->request, data)) != 0 ||
|
||||||
|
|
Loading…
Reference in New Issue