Displaying 3 results from an estimated 3 matches for "child_state".
Did you mean:
child_stack
2003 Oct 08
4
OS/390 openssh
...buffer_append(&kex->my, blob, bloblen);
xfree(blob);
- blob = buffer_get_string(m, &bloblen);
+ blob = buffer_get_binary(m, &bloblen);
buffer_init(&kex->peer);
buffer_append(&kex->peer, blob, bloblen);
xfree(blob);
@@ -1586,23 +1586,23 @@
if (!compat20) {
child_state.ssh1protoflags = buffer_get_int(&m);
child_state.ssh1cipher = buffer_get_int(&m);
- child_state.ssh1key = buffer_get_string(&m,
+ child_state.ssh1key = buffer_get_binary(&m,
&child_state.ssh1keylen);
- child_state.ivout = buffer_get_string(&m,
+ child_state.ivo...
2006 Feb 16
2
PAM and passwd age warnings again.
...he cause.
L8r,
tg.
------------------------------------------------------------------------
diff -Naur openssh-4.2p1.old/monitor.c openssh-4.2p1.new/monitor.c
--- openssh-4.2p1.old/monitor.c Sun Jul 17 03:53:31 2005
+++ openssh-4.2p1.new/monitor.c Tue Dec 20 09:10:04 2005
@@ -1716,6 +1716,11 @@
child_state.input = buffer_get_string(&m, &child_state.ilen);
child_state.output = buffer_get_string(&m, &child_state.olen);
+ /* Let's not forget our loginmsg, now, eh? */
+ p = buffer_get_string (&m, &plen);
+ if (plen) buffer_append (&loginmsg, p, plen);
+ xfree (p);
+...
2003 Jun 11
2
[PATCH] Fix typos, OpenBSD + Portable
...>pw_name);
Index: monitor.c
===================================================================
RCS file: /cvs/src/usr.bin/ssh/monitor.c,v
retrieving revision 1.42
diff -u -r1.42 monitor.c
--- monitor.c 2003/06/02 09:17:34 1.42
+++ monitor.c 2003/06/11 12:29:20
@@ -93,7 +93,7 @@
u_int olen;
} child_state;
-/* Functions on the montior that answer unprivileged requests */
+/* Functions on the monitor that answer unprivileged requests */
int mm_answer_moduli(int, Buffer *);
int mm_answer_sign(int, Buffer *);
Index: sftp-client.c
===================================================================...