summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--bufaux.c3
-rw-r--r--bufbn.c3
-rw-r--r--buffer.c3
-rw-r--r--sftp-client.c3
-rw-r--r--sftp-common.c3
-rw-r--r--sftp-glob.c3
-rw-r--r--uidswap.c3
8 files changed, 20 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 3fd51a6bc..eb78c12e5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
120131121
2 - (djm) OpenBSD CVS Sync
3 - dtucker@cvs.openbsd.org 2013/11/08 11:15:19
4 [bufaux.c bufbn.c buffer.c sftp-client.c sftp-common.c sftp-glob.c]
5 [uidswap.c] Include stdlib.h for free() as per the man page.
6
120131110 720131110
2 - (dtucker) [regress/keytype.sh] Populate ECDSA key types to be tested by 8 - (dtucker) [regress/keytype.sh] Populate ECDSA key types to be tested by
3 querying the ones that are compiled in. 9 querying the ones that are compiled in.
diff --git a/bufaux.c b/bufaux.c
index de5b3ca1a..3e70b8d90 100644
--- a/bufaux.c
+++ b/bufaux.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bufaux.c,v 1.52 2013/07/12 00:19:58 djm Exp $ */ 1/* $OpenBSD: bufaux.c,v 1.53 2013/11/08 11:15:19 dtucker 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 <string.h> 46#include <string.h>
47#include <stdarg.h> 47#include <stdarg.h>
48#include <stdlib.h>
48 49
49#include "xmalloc.h" 50#include "xmalloc.h"
50#include "buffer.h" 51#include "buffer.h"
diff --git a/bufbn.c b/bufbn.c
index 1fbfbbcc9..2ebc80a27 100644
--- a/bufbn.c
+++ b/bufbn.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bufbn.c,v 1.7 2013/05/17 00:13:13 djm Exp $*/ 1/* $OpenBSD: bufbn.c,v 1.8 2013/11/08 11:15:19 dtucker 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 <string.h> 46#include <string.h>
47#include <stdarg.h> 47#include <stdarg.h>
48#include <stdlib.h>
48 49
49#include "xmalloc.h" 50#include "xmalloc.h"
50#include "buffer.h" 51#include "buffer.h"
diff --git a/buffer.c b/buffer.c
index 007e7f94e..9e7c40a5a 100644
--- a/buffer.c
+++ b/buffer.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: buffer.c,v 1.33 2013/05/17 00:13:13 djm Exp $ */ 1/* $OpenBSD: buffer.c,v 1.34 2013/11/08 11:15:19 dtucker 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
@@ -19,6 +19,7 @@
19#include <stdio.h> 19#include <stdio.h>
20#include <string.h> 20#include <string.h>
21#include <stdarg.h> 21#include <stdarg.h>
22#include <stdlib.h>
22 23
23#include "xmalloc.h" 24#include "xmalloc.h"
24#include "buffer.h" 25#include "buffer.h"
diff --git a/sftp-client.c b/sftp-client.c
index 542af8b18..9ecded04b 100644
--- a/sftp-client.c
+++ b/sftp-client.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-client.c,v 1.108 2013/11/08 00:39:15 djm Exp $ */ 1/* $OpenBSD: sftp-client.c,v 1.109 2013/11/08 11:15:19 dtucker Exp $ */
2/* 2/*
3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> 3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
4 * 4 *
@@ -42,6 +42,7 @@
42#include <signal.h> 42#include <signal.h>
43#include <stdarg.h> 43#include <stdarg.h>
44#include <stdio.h> 44#include <stdio.h>
45#include <stdlib.h>
45#include <string.h> 46#include <string.h>
46#include <unistd.h> 47#include <unistd.h>
47 48
diff --git a/sftp-common.c b/sftp-common.c
index 413efc209..88bf51bc6 100644
--- a/sftp-common.c
+++ b/sftp-common.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-common.c,v 1.24 2013/05/17 00:13:14 djm Exp $ */ 1/* $OpenBSD: sftp-common.c,v 1.25 2013/11/08 11:15:19 dtucker 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.
@@ -33,6 +33,7 @@
33#include <grp.h> 33#include <grp.h>
34#include <pwd.h> 34#include <pwd.h>
35#include <stdio.h> 35#include <stdio.h>
36#include <stdlib.h>
36#include <string.h> 37#include <string.h>
37#include <time.h> 38#include <time.h>
38#include <stdarg.h> 39#include <stdarg.h>
diff --git a/sftp-glob.c b/sftp-glob.c
index e1f5a6109..d85aecc9a 100644
--- a/sftp-glob.c
+++ b/sftp-glob.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp-glob.c,v 1.25 2013/11/08 00:39:15 djm Exp $ */ 1/* $OpenBSD: sftp-glob.c,v 1.26 2013/11/08 11:15:19 dtucker Exp $ */
2/* 2/*
3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> 3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
4 * 4 *
@@ -23,6 +23,7 @@
23#endif 23#endif
24 24
25#include <dirent.h> 25#include <dirent.h>
26#include <stdlib.h>
26#include <string.h> 27#include <string.h>
27 28
28#include "xmalloc.h" 29#include "xmalloc.h"
diff --git a/uidswap.c b/uidswap.c
index 26d17f93a..23217ba5c 100644
--- a/uidswap.c
+++ b/uidswap.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: uidswap.c,v 1.35 2006/08/03 03:34:42 deraadt Exp $ */ 1/* $OpenBSD: uidswap.c,v 1.36 2013/11/08 11:15:19 dtucker 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
@@ -20,6 +20,7 @@
20#include <string.h> 20#include <string.h>
21#include <unistd.h> 21#include <unistd.h>
22#include <stdarg.h> 22#include <stdarg.h>
23#include <stdlib.h>
23 24
24#include <grp.h> 25#include <grp.h>
25 26