parent
ec04f360eb
commit
2ecb6bd95d
|
@ -203,6 +203,9 @@
|
||||||
- djm@cvs.openbsd.org 2006/03/04 04:12:58
|
- djm@cvs.openbsd.org 2006/03/04 04:12:58
|
||||||
[serverloop.c]
|
[serverloop.c]
|
||||||
move a debug() outside of a signal handler; ok markus@ a little while back
|
move a debug() outside of a signal handler; ok markus@ a little while back
|
||||||
|
- djm@cvs.openbsd.org 2006/03/12 04:23:07
|
||||||
|
[ssh.c]
|
||||||
|
knf nit
|
||||||
|
|
||||||
20060313
|
20060313
|
||||||
- (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
|
- (dtucker) [configure.ac] Bug #1171: Don't use printf("%lld", longlong)
|
||||||
|
@ -4104,4 +4107,4 @@
|
||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.4198 2006/03/15 01:01:34 djm Exp $
|
$Id: ChangeLog,v 1.4199 2006/03/15 01:03:53 djm Exp $
|
||||||
|
|
4
ssh.c
4
ssh.c
|
@ -40,7 +40,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: ssh.c,v 1.265 2006/02/22 00:04:45 stevesk Exp $");
|
RCSID("$OpenBSD: ssh.c,v 1.266 2006/03/12 04:23:07 djm Exp $");
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#ifdef HAVE_SYS_STAT_H
|
#ifdef HAVE_SYS_STAT_H
|
||||||
|
@ -254,7 +254,7 @@ main(int ac, char **av)
|
||||||
/* Parse command-line arguments. */
|
/* Parse command-line arguments. */
|
||||||
host = NULL;
|
host = NULL;
|
||||||
|
|
||||||
again:
|
again:
|
||||||
while ((opt = getopt(ac, av,
|
while ((opt = getopt(ac, av,
|
||||||
"1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:MNO:PR:S:TVw:XY")) != -1) {
|
"1246ab:c:e:fgi:kl:m:no:p:qstvxACD:F:I:L:MNO:PR:S:TVw:XY")) != -1) {
|
||||||
switch (opt) {
|
switch (opt) {
|
||||||
|
|
Loading…
Reference in New Issue