summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2008-07-09 20:54:37 +1000
committerDamien Miller <djm@mindrot.org>2008-07-09 20:54:37 +1000
commit7acf550aeb4a0197095282bcbc845ec917599540 (patch)
tree9f39a7a90f7974b3ec6bf1648c48726a624b2c60
parent773a7b98f9d4e0767dfdd270a339e9f31ca4edea (diff)
- (djm) [auth.c] Missing unistd.h for close()
-rw-r--r--ChangeLog3
-rw-r--r--auth.c1
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6e6feb641..acb399029 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@
3 - (djm) [auth1.c] Fix format string vulnerability in protocol 1 PAM 3 - (djm) [auth1.c] Fix format string vulnerability in protocol 1 PAM
4 account check failure path. The vulnerable format buffer is supplied 4 account check failure path. The vulnerable format buffer is supplied
5 from PAM and should not contain attacker-supplied data. 5 from PAM and should not contain attacker-supplied data.
6 - (djm) [auth.c] Missing unistd.h for close()
6 7
720080705 820080705
8 - (djm) [auth.c] Fixed test for locked account on HP/UX with shadowed 9 - (djm) [auth.c] Fixed test for locked account on HP/UX with shadowed
@@ -4601,4 +4602,4 @@
4601 OpenServer 6 and add osr5bigcrypt support so when someone migrates 4602 OpenServer 6 and add osr5bigcrypt support so when someone migrates
4602 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 4603 passwords between UnixWare and OpenServer they will still work. OK dtucker@
4603 4604
4604$Id: ChangeLog,v 1.5067 2008/07/09 10:54:05 djm Exp $ 4605$Id: ChangeLog,v 1.5068 2008/07/09 10:54:37 djm Exp $
diff --git a/auth.c b/auth.c
index 84aa2c5e8..2370e5c2c 100644
--- a/auth.c
+++ b/auth.c
@@ -49,6 +49,7 @@
49#include <stdarg.h> 49#include <stdarg.h>
50#include <stdio.h> 50#include <stdio.h>
51#include <string.h> 51#include <string.h>
52#include <unistd.h>
52 53
53#include "xmalloc.h" 54#include "xmalloc.h"
54#include "match.h" 55#include "match.h"