Subject: current parsers.h,1.47,1.48 - msg#00076
List: web.privoxy.cvs
Update of /cvsroot/ijbswa/current
In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv7710
Modified Files:
parsers.h
Log Message:
Remove now-useless reference to debug.
Index: parsers.h
===================================================================
RCS file: /cvsroot/ijbswa/current/parsers.h,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -d -r1.47 -r1.48
--- parsers.h 21 May 2008 20:12:11 -0000 1.47
+++ parsers.h 30 May 2008 15:57:23 -0000 1.48
@@ -43,6 +43,9 @@
*
* Revisions :
* $Log$
+ * Revision 1.48 2008/05/30 15:57:23 fabiankeil
+ * Remove now-useless reference to debug.
+ *
* Revision 1.47 2008/05/21 20:12:11 fabiankeil
* The whole point of strclean() is to modify the
* first parameter, so don't mark it immutable,
@@ -304,8 +307,6 @@
extern const char parsers_rcs[];
extern const char parsers_h_rcs[];
-extern int debug;
-
#ifdef __cplusplus
} /* extern "C" */
#endif
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
Was this page helpful?
Thread at a glance:
Previous Message by Date:
click to view message preview
current errlog.c,1.68,1.69
Update of /cvsroot/ijbswa/current
In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv6079
Modified Files:
errlog.c
Log Message:
Declare variable "debug" static and complain about its name.
Index: errlog.c
===================================================================
RCS file: /cvsroot/ijbswa/current/errlog.c,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -d -r1.68 -r1.69
--- errlog.c 27 Apr 2008 16:50:46 -0000 1.68
+++ errlog.c 30 May 2008 15:55:25 -0000 1.69
@@ -33,6 +33,9 @@
*
* Revisions :
* $Log$
+ * Revision 1.69 2008/05/30 15:55:25 fabiankeil
+ * Declare variable "debug" static and complain about its name.
+ *
* Revision 1.68 2008/04/27 16:50:46 fabiankeil
* Remove an incorrect assertion. The value of debug may change if
* the configuration is reloaded in another thread. While we could
@@ -401,8 +404,8 @@
/* where to log (default: stderr) */
static FILE *logfp = NULL;
-/* logging detail level. */
-int debug = (LOG_LEVEL_FATAL | LOG_LEVEL_ERROR | LOG_LEVEL_INFO);
+/* logging detail level. XXX: stupid name. */
+static int debug = (LOG_LEVEL_FATAL | LOG_LEVEL_ERROR | LOG_LEVEL_INFO);
/* static functions */
static void fatal_error(const char * error_message);
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
Previous Message by Thread:
click to view message preview
current errlog.c,1.68,1.69
Update of /cvsroot/ijbswa/current
In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv6079
Modified Files:
errlog.c
Log Message:
Declare variable "debug" static and complain about its name.
Index: errlog.c
===================================================================
RCS file: /cvsroot/ijbswa/current/errlog.c,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -d -r1.68 -r1.69
--- errlog.c 27 Apr 2008 16:50:46 -0000 1.68
+++ errlog.c 30 May 2008 15:55:25 -0000 1.69
@@ -33,6 +33,9 @@
*
* Revisions :
* $Log$
+ * Revision 1.69 2008/05/30 15:55:25 fabiankeil
+ * Declare variable "debug" static and complain about its name.
+ *
* Revision 1.68 2008/04/27 16:50:46 fabiankeil
* Remove an incorrect assertion. The value of debug may change if
* the configuration is reloaded in another thread. While we could
@@ -401,8 +404,8 @@
/* where to log (default: stderr) */
static FILE *logfp = NULL;
-/* logging detail level. */
-int debug = (LOG_LEVEL_FATAL | LOG_LEVEL_ERROR | LOG_LEVEL_INFO);
+/* logging detail level. XXX: stupid name. */
+static int debug = (LOG_LEVEL_FATAL | LOG_LEVEL_ERROR | LOG_LEVEL_INFO);
/* static functions */
static void fatal_error(const char * error_message);
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/