31 lines
771 B
Diff
31 lines
771 B
Diff
From nobody Mon Sep 17 00:00:00 2001
|
|
From: Paul P Komkoff Jr <i@stingr.net>
|
|
Date: Sat, 10 Jun 2006 20:51:50 +0400
|
|
Subject: [PATCH 3/8] Avoid external "debug" variable.
|
|
|
|
When buildinf flow-tools as bunch of binaries depending on shared library,
|
|
extern int debug shows in too much places. Disable it for now until better
|
|
solution will be developed.
|
|
|
|
---
|
|
|
|
lib/ftfile.c | 2 +-
|
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
1707e321511feb9b7cb117fb6be4d8bcfa8996de
|
|
diff --git a/lib/ftfile.c b/lib/ftfile.c
|
|
index 2f3ae76..f25e849 100644
|
|
--- a/lib/ftfile.c
|
|
+++ b/lib/ftfile.c
|
|
@@ -53,7 +53,7 @@ #endif
|
|
|
|
int load_dir(char *prefix, struct ftfile_entries *fte, int flags, int *depth);
|
|
|
|
-extern int debug;
|
|
+#define debug 0
|
|
|
|
/*
|
|
* function: ftfile_entry_new
|
|
--
|
|
1.3.3
|
|
|