From: djm Date: Wed, 9 Jul 2008 10:54:37 +0000 (+0000) Subject: - (djm) [auth.c] Missing unistd.h for close() X-Git-Tag: V_5_1_P1~27 X-Git-Url: http://andersk.mit.edu/gitweb/openssh.git/commitdiff_plain/78cb4705944a21bea5000d64d5db24e3b5d29aca - (djm) [auth.c] Missing unistd.h for close() --- diff --git a/ChangeLog b/ChangeLog index ac4c403a..cee28e34 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,7 @@ - (djm) [auth1.c] Fix format string vulnerability in protocol 1 PAM account check failure path. The vulnerable format buffer is supplied from PAM and should not contain attacker-supplied data. + - (djm) [auth.c] Missing unistd.h for close() 20080705 - (djm) [auth.c] Fixed test for locked account on HP/UX with shadowed diff --git a/auth.c b/auth.c index 84aa2c5e..2370e5c2 100644 --- a/auth.c +++ b/auth.c @@ -49,6 +49,7 @@ #include #include #include +#include #include "xmalloc.h" #include "match.h"