diff options
author | Damien Miller <djm@mindrot.org> | 2013-11-21 13:55:43 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2013-11-21 13:55:43 +1100 |
commit | 0600c7020f4fe68a780bd7cf21ff541a8d4b568a (patch) | |
tree | 5dfff2aba4491b66950c155598766141c1534c02 /sftp-common.c | |
parent | b6a75b0b93b8faa6f79c3a395ab6c71f3f880b80 (diff) | |
download | openssh-git-0600c7020f4fe68a780bd7cf21ff541a8d4b568a.tar.gz |
- dtucker@cvs.openbsd.org 2013/11/08 11:15:19
[bufaux.c bufbn.c buffer.c sftp-client.c sftp-common.c sftp-glob.c]
[uidswap.c] Include stdlib.h for free() as per the man page.
Diffstat (limited to 'sftp-common.c')
-rw-r--r-- | sftp-common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sftp-common.c b/sftp-common.c index 413efc20..88bf51bc 100644 --- a/sftp-common.c +++ b/sftp-common.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sftp-common.c,v 1.24 2013/05/17 00:13:14 djm Exp $ */ +/* $OpenBSD: sftp-common.c,v 1.25 2013/11/08 11:15:19 dtucker Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. * Copyright (c) 2001 Damien Miller. All rights reserved. @@ -33,6 +33,7 @@ #include <grp.h> #include <pwd.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <time.h> #include <stdarg.h> |