Index: Makefile ================================================================== --- Makefile +++ Makefile @@ -1,10 +1,10 @@ APPFS_VERSION = 1.12 CC = gcc PKG_CONFIG = pkg-config FUSE_CFLAGS = $(shell $(PKG_CONFIG) --cflags fuse) -CFLAGS_DEBUG = -Wall -g3 -ggdb3 -DDEBUG=1 -UNDEBUG -O0 -DAPPFS_EXIT_PATH=1 +CFLAGS_DEBUG = -Wall -g3 -ggdb3 -DDEBUG=1 -UNDEBUG -O0 -DAPPFS_EXIT_PATH=1 -DAPPFS_DEBUG_FD=stderr CFLAGS_RELEASE = -Wall -UDEBUG -DNDEBUG=1 -O3 ifneq ($(APPFS_DEBUG_BUILD),1) CFLAGS += $(FUSE_CFLAGS) $(TCL_CFLAGS) $(CFLAGS_RELEASE) else CFLAGS += $(FUSE_CFLAGS) $(TCL_CFLAGS) $(CFLAGS_DEBUG) Index: appfsd.c ================================================================== --- appfsd.c +++ appfsd.c @@ -45,15 +45,24 @@ #endif /* Debugging macros */ #ifdef DEBUG FILE *appfs_debug_fd = NULL; + +#ifndef APPFS_DEBUG_FD +# ifdef APPFS_DEBUG_FILE +# define APPFS_DEBUG_FD fopen(APPFS_DEBUG_FILE, "a") +# else +# define APPFS_DEBUG_FD fopen("/tmp/appfsd.log", "a") +# endif +#endif + #define APPFS_DEBUG(x...) { \ char buf[8192]; \ int bufoff = 0; \ if (appfs_debug_fd == NULL) { \ - appfs_debug_fd = fopen("/tmp/appfsd.log", "a"); \ + appfs_debug_fd = APPFS_DEBUG_FD; \ }; \ if (appfs_debug_fd == NULL) { appfs_debug_fd = stderr; } \ bufoff = snprintf(buf, sizeof(buf), "[debug] [t=%llx] %s:%i:%s: ", (unsigned long long) pthread_self(), __FILE__, __LINE__, __func__); \ if (bufoff < sizeof(buf)) { \ bufoff += snprintf(buf + bufoff, sizeof(buf) - bufoff, x); \ @@ -2369,10 +2378,13 @@ * Skip passed program name */ if (argc == 0 || argv == NULL) { return(1); } +for (i = 0; i < argc; i++) { +// printf("argv[%i] = \"%s\"\n", i, argv[i]); +} argv0 = argv[0]; argc--; argv++;