bug-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: warning during compilation of CVS with --disable-server-flow-control


From: Mark D. Baushke
Subject: Re: warning during compilation of CVS with --disable-server-flow-control
Date: Wed, 06 Sep 2006 10:13:42 -0700

Hi Jim,

Jim Salter <jsalterjim@earthlink.net> writes:

> Configure option: --disable-server-flow-control
> 
> log-buffer.c: In function `log_buffer_input':
> log-buffer.c:230: warning: implicit declaration of function `buf_count_mem'

Thank you for your problem report.

I have applied the following patch for this problem.

        -- Mark

cvs diff: Diffing .
Index: ChangeLog
===================================================================
RCS file: /cvsroot/cvs/ccvs/src/ChangeLog,v
retrieving revision 1.3490
diff -u -p -r1.3490 ChangeLog
--- ChangeLog   6 Sep 2006 15:33:03 -0000       1.3490
+++ ChangeLog   6 Sep 2006 17:11:37 -0000
@@ -1,3 +1,7 @@
+2006-09-06  Mark D. Baushke  <mdb@gnu.org>
+
+       * buffer.h (buf_count_mem): Provide if defined (PROXY_SUPPORT).
+
 2006-09-06  Derek Price  <derek@ximbiot.com>
 
        [bug #17560]
Index: buffer.h
===================================================================
RCS file: /cvsroot/cvs/ccvs/src/buffer.h,v
retrieving revision 1.30
diff -u -p -r1.30 buffer.h
--- buffer.h    4 May 2006 18:15:15 -0000       1.30
+++ buffer.h    6 Sep 2006 17:11:37 -0000
@@ -188,9 +188,9 @@ void buf_copy_data (struct buffer *buf, 
 #endif /* PROXY_SUPPORT */
 void buf_free_data (struct buffer *);
 
-#ifdef SERVER_FLOWCONTROL
+#if defined (SERVER_FLOWCONTROL) || defined (PROXY_SUPPORT)
 int buf_count_mem (struct buffer *);
-#endif /* SERVER_FLOWCONTROL */
+#endif /* SERVER_FLOWCONTROL || PROXY_SUPPORT */
 
 #if defined (SERVER_SUPPORT) || defined (CLIENT_SUPPORT)
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]