mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-27 05:46:36 +08:00
- djm@cvs.openbsd.org 2003/11/18 10:53:07
[monitor.c] unbreak fake authloop for non-existent users (my screwup). Spotted and tested by dtucker@; ok markus@
This commit is contained in:
parent
4bb1dd3166
commit
f96d18362d
@ -9,6 +9,10 @@
|
||||
- dtucker@cvs.openbsd.org 2003/11/18 00:40:05
|
||||
[serverloop.c]
|
||||
Correct check for authctxt->valid. ok djm@
|
||||
- djm@cvs.openbsd.org 2003/11/18 10:53:07
|
||||
[monitor.c]
|
||||
unbreak fake authloop for non-existent users (my screwup). Spotted and
|
||||
tested by dtucker@; ok markus@
|
||||
|
||||
20031117
|
||||
- (djm) OpenBSD CVS Sync
|
||||
@ -1484,4 +1488,4 @@
|
||||
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
|
||||
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
|
||||
|
||||
$Id: ChangeLog,v 1.3116 2003/11/18 11:01:25 djm Exp $
|
||||
$Id: ChangeLog,v 1.3117 2003/11/18 11:01:48 djm Exp $
|
||||
|
@ -25,7 +25,7 @@
|
||||
*/
|
||||
|
||||
#include "includes.h"
|
||||
RCSID("$OpenBSD: monitor.c,v 1.52 2003/11/17 11:06:07 markus Exp $");
|
||||
RCSID("$OpenBSD: monitor.c,v 1.53 2003/11/18 10:53:07 djm Exp $");
|
||||
|
||||
#include <openssl/dh.h>
|
||||
|
||||
@ -567,6 +567,7 @@ mm_answer_pwnamallow(int socket, Buffer *m)
|
||||
|
||||
if (pwent == NULL) {
|
||||
buffer_put_char(m, 0);
|
||||
authctxt->pw = fakepw();
|
||||
goto out;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user