diff options
author | Martynas Venckus <martynas@cvs.openbsd.org> | 2009-05-05 19:35:31 +0000 |
---|---|---|
committer | Martynas Venckus <martynas@cvs.openbsd.org> | 2009-05-05 19:35:31 +0000 |
commit | fc00281133cda43c13f628083337636552178c5b (patch) | |
tree | 71067df8a22d8351c6157bb713b7282529d9dfae /usr.bin/ftp/cookie.c | |
parent | 9ba9fea3f98a262c162ae879fc06dcddc33ad2af (diff) |
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/cookie.c')
-rw-r--r-- | usr.bin/ftp/cookie.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ftp/cookie.c b/usr.bin/ftp/cookie.c index 9fde85a245d..266f24dbcd4 100644 --- a/usr.bin/ftp/cookie.c +++ b/usr.bin/ftp/cookie.c @@ -1,4 +1,5 @@ -/* $OpenBSD: cookie.c,v 1.4 2008/12/07 21:12:07 cloder Exp $ */ +/* $OpenBSD: cookie.c,v 1.5 2009/05/05 19:35:30 martynas Exp $ */ + /* * Copyright (c) 2007 Pierre-Yves Ritschard <pyr@openbsd.org> * @@ -16,6 +17,7 @@ */ #ifndef SMALL + #include <sys/types.h> #include <sys/queue.h> @@ -226,3 +228,4 @@ cookie_get(const char *domain, const char *path, int secure, char **pstr) } #endif /* !SMALL */ + |