summaryrefslogtreecommitdiff
path: root/uidswap.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 /uidswap.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 'uidswap.c')
-rw-r--r--uidswap.c3
1 files changed, 2 insertions, 1 deletions
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