search for: sshpid

Displaying 4 results from an estimated 4 matches for "sshpid".

2002 Mar 29
1
Two patches for OpenSSH 3.1p1 (fwd)
...uot;); else if (WEXITSTATUS(status)) diff -r -c openssh-3.1p1/sftp.c openssh-3.1p1-peter/sftp.c *** openssh-3.1p1/sftp.c Wed Feb 13 04:03:57 2002 --- openssh-3.1p1-peter/sftp.c Mon Mar 18 22:01:49 2002 *************** *** 246,253 **** if (infile != stdin) fclose(infile); ! if (waitpid(sshpid, NULL, 0) == -1) fatal("Couldn't wait for ssh process: %s", strerror(errno)); exit(0); } --- 246,261 ---- if (infile != stdin) fclose(infile); ! { ! int code; ! ! ! while ((code = waitpid(sshpid, NULL, 0)) == -1 && errno == EINTR) ! ;...
2002 Mar 26
1
Two patches for OpenSSH 3.1p1
...uot;); else if (WEXITSTATUS(status)) diff -r -c openssh-3.1p1/sftp.c openssh-3.1p1-peter/sftp.c *** openssh-3.1p1/sftp.c Wed Feb 13 04:03:57 2002 --- openssh-3.1p1-peter/sftp.c Mon Mar 18 22:01:49 2002 *************** *** 246,253 **** if (infile != stdin) fclose(infile); ! if (waitpid(sshpid, NULL, 0) == -1) fatal("Couldn't wait for ssh process: %s", strerror(errno)); exit(0); } --- 246,261 ---- if (infile != stdin) fclose(infile); ! { ! int code; ! ! ! while ((code = waitpid(sshpid, NULL, 0)) == -1 && errno == EINTR) ! ;...
2001 Feb 22
11
Lets try this push again.. 2.5.1p2 bugs left.
Things that are still outstanding: 1) Solaris/Redhat/HPUX session.c patch. I've not seen a ya or na on Kevin's pam patch from the Solaris group. 2) Odd Redhat/Debian scp/ssh issues. .. I'm baffled, and I can't replicate the bug. Nor have I seen anything remotely like it reported. 3) SCO.. Is it happy yet for compiling? =) Completed: 1) mdoc2man.pl .. Commited into
2002 Feb 05
3
COPY_SIZE #define
...penssh-3.0.2p1/sftp.c Wed Sep 19 20:57:56 2001 +++ openssh-3.0.2p1-mtb1/sftp.c Tue Feb 5 11:19:25 2002 @@ -48,6 +48,7 @@ char *__progname; char *ssh_program = _PATH_SSH_PROGRAM; FILE* infile; +unsigned int COPY_SIZE=8192; static void connect_to_server(char **args, int *in, int *out, pid_t *sshpid) @@ -95,7 +96,7 @@ usage(void) { fprintf(stderr, "usage: sftp [-1Cv] [-b batchfile] [-F config] [-o option] [-s subsystem|path]\n" - " [-S program] [user@]host[:file [file]]\n"); + " [-B bufsize] [-S program] [user@]host[:file [file]]\...