]> andersk Git - openssh.git/commitdiff
- (djm) [auth.c] Missing unistd.h for close()
authordjm <djm>
Wed, 9 Jul 2008 10:54:37 +0000 (10:54 +0000)
committerdjm <djm>
Wed, 9 Jul 2008 10:54:37 +0000 (10:54 +0000)
ChangeLog
auth.c

index ac4c403a76b4bf6a66e5c45c14257c05bc2f13fe..cee28e34245d2bf78a03e3165afe8770d1d61500 100644 (file)
--- 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 84aa2c5e8b1e562734aace254d34c6f43d3fe8c4..2370e5c2c714ab0d90b251eda90f8011eb71c4c0 100644 (file)
--- a/auth.c
+++ b/auth.c
@@ -49,6 +49,7 @@
 #include <stdarg.h>
 #include <stdio.h>
 #include <string.h>
+#include <unistd.h>
 
 #include "xmalloc.h"
 #include "match.h"
This page took 0.534087 seconds and 5 git commands to generate.