[openssh-commits] [openssh] 02/07: upstream: correct comment and use local variable instead of long
git+noreply at mindrot.org
git+noreply at mindrot.org
Tue Jan 25 12:18:58 AEDT 2022
This is an automated email from the git hooks/post-receive script.
djm pushed a commit to branch master
in repository openssh.
commit d23b4f7fdb1bd87e2cd7a9ae7c198ae99d347916
Author: djm at openbsd.org <djm at openbsd.org>
Date: Fri Jan 21 06:58:06 2022 +0000
upstream: correct comment and use local variable instead of long
indirection; spotted by dtucker@
OpenBSD-Commit-ID: 5f65f5f69db2b7d80a0a81b08f390a63f8845965
---
packet.c | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/packet.c b/packet.c
index d81d01a1..5a50fcd9 100644
--- a/packet.c
+++ b/packet.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: packet.c,v 1.305 2022/01/17 22:56:04 djm Exp $ */
+/* $OpenBSD: packet.c,v 1.306 2022/01/21 06:58:06 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo at cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo at cs.hut.fi>, Espoo, Finland
@@ -1760,10 +1760,9 @@ ssh_packet_read_poll_seqnr(struct ssh *ssh, u_char *typep, u_int32_t *seqnr_p)
}
/*
- * Buffers the given amount of input characters. This is intended to be used
- * together with packet_read_poll.
+ * Buffers the supplied input data. This is intended to be used together
+ * with packet_read_poll().
*/
-
int
ssh_packet_process_incoming(struct ssh *ssh, const char *buf, u_int len)
{
@@ -1779,7 +1778,7 @@ ssh_packet_process_incoming(struct ssh *ssh, const char *buf, u_int len)
state->packet_discard -= len;
return 0;
}
- if ((r = sshbuf_put(ssh->state->input, buf, len)) != 0)
+ if ((r = sshbuf_put(state->input, buf, len)) != 0)
return r;
return 0;
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list