Index: include/http_protocol.h
===================================================================
RCS file: /home/cvspublic/httpd-2.0/include/http_protocol.h,v
retrieving revision 1.67
diff -u -r1.67 http_protocol.h
--- include/http_protocol.h	2001/12/02 23:13:32	1.67
+++ include/http_protocol.h	2001/12/07 23:26:20
@@ -552,7 +552,7 @@
  *         -1 for miscellaneous errors
  * @deffunc int ap_method_number_of(const char *method)
  */
-AP_DECLARE(int) ap_rgetline(char **s, int n, request_rec *r, int fold);
+AP_DECLARE(int) ap_rgetline(char **s, apr_size_t n, request_rec *r, int fold);
 
 /**
  * Get the method number associated with the given string, assumed to
Index: server/protocol.c
===================================================================
RCS file: /home/cvspublic/httpd-2.0/server/protocol.c,v
retrieving revision 1.60
diff -u -r1.60 protocol.c
--- server/protocol.c	2001/12/05 01:34:00	1.60
+++ server/protocol.c	2001/12/07 23:26:21
@@ -198,7 +198,7 @@
  *        If no LF is detected on the last line due to a dropped connection 
  *        or a full buffer, that's considered an error.
  */
-AP_DECLARE(int) ap_rgetline(char **s, int n, request_rec *r, int fold)
+AP_DECLARE(int) ap_rgetline(char **s, apr_size_t n, request_rec *r, int fold)
 {
     char *pos;
     char *last_char;
