manoj 99/10/26 15:53:57
Modified: src/include buff.h Log: Prototypes changed slightly for ap_bclose and ap_bflush. Revision Changes Path 1.6 +2 -2 apache-2.0/src/include/buff.h Index: buff.h =================================================================== RCS file: /home/cvs/apache-2.0/src/include/buff.h,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -u -r1.5 -r1.6 --- buff.h 1999/10/26 22:42:41 1.5 +++ buff.h 1999/10/26 22:53:55 1.6 @@ -172,7 +172,7 @@ API_EXPORT(ap_status_t) ap_bsetopt(BUFF *fb, int optname, const void *optval); API_EXPORT(ap_status_t) ap_bgetopt(BUFF *fb, int optname, void *optval); API_EXPORT(int) ap_bsetflag(BUFF *fb, int flag, int value); -API_EXPORT(int) ap_bclose(BUFF *fb); +API_EXPORT(ap_status_t) ap_bclose(BUFF *fb); #define ap_bgetflag(fb, flag) ((fb)->flags & (flag)) @@ -186,7 +186,7 @@ API_EXPORT(int) ap_bgets(char *s, int n, BUFF *fb); API_EXPORT(int) ap_blookc(BUFF *fb); API_EXPORT(int) ap_bwrite(BUFF *fb, const void *buf, int nbyte); -API_EXPORT(int) ap_bflush(BUFF *fb); +API_EXPORT(ap_status_t) ap_bflush(BUFF *fb); API_EXPORT(int) ap_bputs(const char *x, BUFF *fb); API_EXPORT(int) ap_bvputs(BUFF *fb,...); API_EXPORT_NONSTD(int) ap_bprintf(BUFF *fb, const char *fmt,...)