From: William A. Rowe Jr Date: Sat, 18 Nov 2000 15:22:45 +0000 (+0000) Subject: Cleanup a signed/unsigned warning X-Git-Tag: APACHE_2_0_ALPHA_8~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7512a5ea2995e4356840e2ab4ded3b9847fe1928;p=apache Cleanup a signed/unsigned warning git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87011 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/rfc1413.c b/server/rfc1413.c index 094ed1fa48..bafd9bd9a5 100644 --- a/server/rfc1413.c +++ b/server/rfc1413.c @@ -115,7 +115,7 @@ static int get_rfc1413(apr_socket_t *sock, apr_pool_t *p, apr_port_t rmt_port, our_port; apr_port_t sav_rmt_port, sav_our_port; apr_status_t status; - int i; + size_t i; char *cp; char buffer[RFC1413_MAXDATA + 1]; int buflen;