diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2006-05-25 03:43:37 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2006-05-25 03:43:37 +0000 |
commit | a7a0b4f14a80a22a8d63ed288eaf2ae35efc824d (patch) | |
tree | a87dfe6dfa4644849bf2b6aef4355b55d3a1ad11 /usr.bin/ftp | |
parent | 0b0735f60b12ed7e8a2f480ef1ae7f5e9db3b7a3 (diff) |
Minor type correction.
OK otto@
Diffstat (limited to 'usr.bin/ftp')
-rw-r--r-- | usr.bin/ftp/fetch.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/ftp/fetch.c b/usr.bin/ftp/fetch.c index c9b806e9f3e..4cde2b14a45 100644 --- a/usr.bin/ftp/fetch.c +++ b/usr.bin/ftp/fetch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fetch.c,v 1.62 2006/05/16 23:43:16 ray Exp $ */ +/* $OpenBSD: fetch.c,v 1.63 2006/05/25 03:43:36 ray Exp $ */ /* $NetBSD: fetch.c,v 1.14 1997/08/18 10:20:20 lukem Exp $ */ /*- @@ -38,7 +38,7 @@ */ #if !defined(lint) && !defined(SMALL) -static const char rcsid[] = "$OpenBSD: fetch.c,v 1.62 2006/05/16 23:43:16 ray Exp $"; +static const char rcsid[] = "$OpenBSD: fetch.c,v 1.63 2006/05/25 03:43:36 ray Exp $"; #endif /* not lint and not SMALL */ /* @@ -1095,8 +1095,7 @@ SSL_vprintf(SSL *ssl, const char *fmt, va_list ap) char * SSL_readline(SSL *ssl, size_t *lenp) { - int i; - size_t len; + size_t i, len; char *buf, *q, c; len = 128; |