summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2000-11-18 16:22:45 +0100
committerWilliam A. Rowe Jr <wrowe@apache.org>2000-11-18 16:22:45 +0100
commit7512a5ea2995e4356840e2ab4ded3b9847fe1928 (patch)
tree4422a6a3e3f06012000ed818612b1ccbe6eb1956 /server
parent Cleanup more compiler warnings. (diff)
downloadapache2-7512a5ea2995e4356840e2ab4ded3b9847fe1928.tar.xz
apache2-7512a5ea2995e4356840e2ab4ded3b9847fe1928.zip
Cleanup a signed/unsigned warning
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87011 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server')
-rw-r--r--server/rfc1413.c2
1 files changed, 1 insertions, 1 deletions
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;