summaryrefslogtreecommitdiff
path: root/sftp-client.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-11-21 13:55:43 +1100
committerDamien Miller <djm@mindrot.org>2013-11-21 13:55:43 +1100
commit0600c7020f4fe68a780bd7cf21ff541a8d4b568a (patch)
tree5dfff2aba4491b66950c155598766141c1534c02 /sftp-client.c
parentb6a75b0b93b8faa6f79c3a395ab6c71f3f880b80 (diff)
- 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-client.c')
-rw-r--r--sftp-client.c3
1 files changed, 2 insertions, 1 deletions
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