summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--includes.h3
-rw-r--r--moduli.c11
-rw-r--r--progressmeter.c3
-rw-r--r--scp.c3
-rw-r--r--sftp-common.c3
-rw-r--r--sftp-server.c3
-rw-r--r--ssh-agent.c3
-rw-r--r--sshlogin.c3
9 files changed, 26 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index 49fccbec4..636d309b9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -76,6 +76,10 @@
76 - stevesk@cvs.openbsd.org 2006/07/21 21:26:55 76 - stevesk@cvs.openbsd.org 2006/07/21 21:26:55
77 [progressmeter.c] 77 [progressmeter.c]
78 ARGSUSED for signal handler 78 ARGSUSED for signal handler
79 - stevesk@cvs.openbsd.org 2006/07/22 19:08:54
80 [includes.h moduli.c progressmeter.c scp.c sftp-common.c]
81 [sftp-server.c ssh-agent.c sshlogin.c]
82 move #include <time.h> out of includes.h
79 83
8020060713 8420060713
81 - (dtucker) [auth-krb5.c auth-pam.c] Still more errno.h 85 - (dtucker) [auth-krb5.c auth-pam.c] Still more errno.h
@@ -4994,4 +4998,4 @@
4994 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 4998 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
4995 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 4999 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
4996 5000
4997$Id: ChangeLog,v 1.4426 2006/07/24 04:08:50 djm Exp $ 5001$Id: ChangeLog,v 1.4427 2006/07/24 04:09:40 djm Exp $
diff --git a/includes.h b/includes.h
index da89decdd..da526bc72 100644
--- a/includes.h
+++ b/includes.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: includes.h,v 1.52 2006/07/17 01:31:09 stevesk Exp $ */ 1/* $OpenBSD: includes.h,v 1.53 2006/07/22 19:08:54 stevesk Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -23,7 +23,6 @@
23#include <stdio.h> 23#include <stdio.h>
24#include <stdlib.h> 24#include <stdlib.h>
25#include <string.h> 25#include <string.h>
26#include <time.h>
27 26
28#ifdef HAVE_LIMITS_H 27#ifdef HAVE_LIMITS_H
29# include <limits.h> /* For PATH_MAX */ 28# include <limits.h> /* For PATH_MAX */
diff --git a/moduli.c b/moduli.c
index f6f15a2a4..9d4aedd5b 100644
--- a/moduli.c
+++ b/moduli.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: moduli.c,v 1.13 2006/03/25 00:05:41 djm Exp $ */ 1/* $OpenBSD: moduli.c,v 1.14 2006/07/22 19:08:54 stevesk Exp $ */
2/* 2/*
3 * Copyright 1994 Phil Karn <karn@qualcomm.com> 3 * Copyright 1994 Phil Karn <karn@qualcomm.com>
4 * Copyright 1996-1998, 2003 William Allen Simpson <wsimpson@greendragon.com> 4 * Copyright 1996-1998, 2003 William Allen Simpson <wsimpson@greendragon.com>
@@ -38,11 +38,16 @@
38 */ 38 */
39 39
40#include "includes.h" 40#include "includes.h"
41#include "xmalloc.h" 41
42#include "log.h" 42#include <sys/types.h>
43 43
44#include <openssl/bn.h> 44#include <openssl/bn.h>
45 45
46#include <time.h>
47
48#include "xmalloc.h"
49#include "log.h"
50
46/* 51/*
47 * File output defines 52 * File output defines
48 */ 53 */
diff --git a/progressmeter.c b/progressmeter.c
index c8c3f1b32..c70e9939a 100644
--- a/progressmeter.c
+++ b/progressmeter.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: progressmeter.c,v 1.32 2006/07/21 21:26:55 stevesk Exp $ */ 1/* $OpenBSD: progressmeter.c,v 1.33 2006/07/22 19:08:54 stevesk Exp $ */
2/* 2/*
3 * Copyright (c) 2003 Nils Nordman. All rights reserved. 3 * Copyright (c) 2003 Nils Nordman. All rights reserved.
4 * 4 *
@@ -30,6 +30,7 @@
30 30
31#include <errno.h> 31#include <errno.h>
32#include <signal.h> 32#include <signal.h>
33#include <time.h>
33#include <unistd.h> 34#include <unistd.h>
34 35
35#include "progressmeter.h" 36#include "progressmeter.h"
diff --git a/scp.c b/scp.c
index 03f815fbe..72c4ee430 100644
--- a/scp.c
+++ b/scp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: scp.c,v 1.148 2006/07/17 01:31:09 stevesk Exp $ */ 1/* $OpenBSD: scp.c,v 1.149 2006/07/22 19:08:54 stevesk Exp $ */
2/* 2/*
3 * scp - secure remote copy. This is basically patched BSD rcp which 3 * scp - secure remote copy. This is basically patched BSD rcp which
4 * uses ssh to do the data transfer (instead of using rcmd). 4 * uses ssh to do the data transfer (instead of using rcmd).
@@ -86,6 +86,7 @@
86#include <pwd.h> 86#include <pwd.h>
87#include <signal.h> 87#include <signal.h>
88#include <stdarg.h> 88#include <stdarg.h>
89#include <time.h>
89#include <unistd.h> 90#include <unistd.h>
90 91
91#include "xmalloc.h" 92#include "xmalloc.h"
diff --git a/sftp-common.c b/sftp-common.c
index 92ce90661..6fd0d76b6 100644
--- a/sftp-common.c
+++ b/sftp-common.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-common.c,v 1.15 2006/07/06 16:03:53 stevesk Exp $ */ 1/* $OpenBSD: sftp-common.c,v 1.16 2006/07/22 19:08:54 stevesk Exp $ */
2/* 2/*
3 * Copyright (c) 2001 Markus Friedl. All rights reserved. 3 * Copyright (c) 2001 Markus Friedl. All rights reserved.
4 * Copyright (c) 2001 Damien Miller. All rights reserved. 4 * Copyright (c) 2001 Damien Miller. All rights reserved.
@@ -31,6 +31,7 @@
31 31
32#include <grp.h> 32#include <grp.h>
33#include <pwd.h> 33#include <pwd.h>
34#include <time.h>
34 35
35#include "buffer.h" 36#include "buffer.h"
36#include "bufaux.h" 37#include "bufaux.h"
diff --git a/sftp-server.c b/sftp-server.c
index 923cc8c19..3c254e332 100644
--- a/sftp-server.c
+++ b/sftp-server.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-server.c,v 1.63 2006/07/17 01:31:09 stevesk Exp $ */ 1/* $OpenBSD: sftp-server.c,v 1.64 2006/07/22 19:08:54 stevesk Exp $ */
2/* 2/*
3 * Copyright (c) 2000-2004 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000-2004 Markus Friedl. All rights reserved.
4 * 4 *
@@ -24,6 +24,7 @@
24#include <fcntl.h> 24#include <fcntl.h>
25#include <pwd.h> 25#include <pwd.h>
26#include <unistd.h> 26#include <unistd.h>
27#include <time.h>
27 28
28#include "buffer.h" 29#include "buffer.h"
29#include "bufaux.h" 30#include "bufaux.h"
diff --git a/ssh-agent.c b/ssh-agent.c
index 621b09771..a0713b238 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-agent.c,v 1.144 2006/07/17 01:31:10 stevesk Exp $ */ 1/* $OpenBSD: ssh-agent.c,v 1.145 2006/07/22 19:08:54 stevesk Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -51,6 +51,7 @@
51# include <paths.h> 51# include <paths.h>
52#endif 52#endif
53#include <signal.h> 53#include <signal.h>
54#include <time.h>
54#include <unistd.h> 55#include <unistd.h>
55 56
56#include <openssl/evp.h> 57#include <openssl/evp.h>
diff --git a/sshlogin.c b/sshlogin.c
index 335069313..ea313e800 100644
--- a/sshlogin.c
+++ b/sshlogin.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshlogin.c,v 1.20 2006/07/17 01:31:10 stevesk Exp $ */ 1/* $OpenBSD: sshlogin.c,v 1.21 2006/07/22 19:08:54 stevesk Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -45,6 +45,7 @@
45 45
46#include <errno.h> 46#include <errno.h>
47#include <fcntl.h> 47#include <fcntl.h>
48#include <time.h>
48#include <unistd.h> 49#include <unistd.h>
49 50
50#include "loginrec.h" 51#include "loginrec.h"