diff options
author | 2009-05-05 19:35:30 +0000 | |
---|---|---|
committer | 2009-05-05 19:35:30 +0000 | |
commit | b8ff3e6e1d9c3c877dc7bd35448d95612d7ccb2c (patch) | |
tree | fead2c02d34bf859d3bd4215f17645973c3e0441 /usr.bin/ftp/list.c | |
parent | fix for upgrade and vlans (diff) | |
download | wireguard-openbsd-b8ff3e6e1d9c3c877dc7bd35448d95612d7ccb2c.tar.xz wireguard-openbsd-b8ff3e6e1d9c3c877dc7bd35448d95612d7ccb2c.zip |
make it clean removing the ifdef SMALL maze. separate cmds and
small stuff. make it a fetcher. shrinks quite a bit
agreed by millert@, krw@
ok theo, sthen@
Diffstat (limited to 'usr.bin/ftp/list.c')
-rw-r--r-- | usr.bin/ftp/list.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ftp/list.c b/usr.bin/ftp/list.c index 6f0befb997e..d0d9621875a 100644 --- a/usr.bin/ftp/list.c +++ b/usr.bin/ftp/list.c @@ -1,4 +1,5 @@ -/* $OpenBSD: list.c,v 1.2 2008/10/21 17:54:00 martynas Exp $ */ +/* $OpenBSD: list.c,v 1.3 2009/05/05 19:35:30 martynas Exp $ */ + /* * Copyright (c) 2008 Martynas Venckus <martynas@openbsd.org> * @@ -16,6 +17,7 @@ */ #ifndef SMALL + #include <string.h> void @@ -75,3 +77,4 @@ parse_list(char **line, char *type) } #endif /* !SMALL */ + |