- dtucker@cvs.openbsd.org 2012/06/22 12:30:26
[monitor.c sshconnect2.c] remove dead code following 'for (;;)' loops. From Steve.McClellan at radisys com, ok markus@
This commit is contained in:
parent
97f43bbfc9
commit
5f58a87768
|
@ -3,6 +3,10 @@
|
||||||
- dtucker@cvs.openbsd.org 2012/06/21 00:16:07
|
- dtucker@cvs.openbsd.org 2012/06/21 00:16:07
|
||||||
[addrmatch.c]
|
[addrmatch.c]
|
||||||
fix strlcpy truncation check. from carsten at debian org, ok markus
|
fix strlcpy truncation check. from carsten at debian org, ok markus
|
||||||
|
- dtucker@cvs.openbsd.org 2012/06/22 12:30:26
|
||||||
|
[monitor.c sshconnect2.c]
|
||||||
|
remove dead code following 'for (;;)' loops.
|
||||||
|
From Steve.McClellan at radisys com, ok markus@
|
||||||
|
|
||||||
20120628
|
20120628
|
||||||
- (dtucker) [openbsd-compat/getrrsetbyname-ldns.c] bz #2022: prevent null
|
- (dtucker) [openbsd-compat/getrrsetbyname-ldns.c] bz #2022: prevent null
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: monitor.c,v 1.116 2012/01/05 00:16:56 djm Exp $ */
|
/* $OpenBSD: monitor.c,v 1.117 2012/06/22 12:30:26 dtucker Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
|
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
|
||||||
* Copyright 2002 Markus Friedl <markus@openbsd.org>
|
* Copyright 2002 Markus Friedl <markus@openbsd.org>
|
||||||
|
@ -479,9 +479,6 @@ monitor_child_postauth(struct monitor *pmonitor)
|
||||||
|
|
||||||
for (;;)
|
for (;;)
|
||||||
monitor_read(pmonitor, mon_dispatch, NULL);
|
monitor_read(pmonitor, mon_dispatch, NULL);
|
||||||
|
|
||||||
close(pmonitor->m_sendfd);
|
|
||||||
pmonitor->m_sendfd = -1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: sshconnect2.c,v 1.188 2011/05/24 07:15:47 djm Exp $ */
|
/* $OpenBSD: sshconnect2.c,v 1.189 2012/06/22 12:30:26 dtucker Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
* Copyright (c) 2000 Markus Friedl. All rights reserved.
|
||||||
* Copyright (c) 2008 Damien Miller. All rights reserved.
|
* Copyright (c) 2008 Damien Miller. All rights reserved.
|
||||||
|
@ -1893,8 +1893,6 @@ authmethod_get(char *authlist)
|
||||||
return current;
|
return current;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (name != NULL)
|
|
||||||
xfree(name);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static char *
|
static char *
|
||||||
|
|
Loading…
Reference in New Issue