susmb

mounting of SMB/CIFS shares via FUSE
git clone git://git.codemadness.org/susmb
Log | Files | Refs | README | LICENSE

commit 85027ff2a786c1176498b1b7545f8e30895fe66d
parent 23d458c666083432ecb49a694ded6372b131e03b
Author: geoff <devnull@localhost>
Date:   Sat,  8 Jul 2006 20:18:40 +0000

Fix no-brainer in forced -f in debug build.

Diffstat:
Moptions.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/options.c b/options.c @@ -148,7 +148,7 @@ void build_fuse_args (char *options, char *mountpoint, argv[argc++] = "-d"; // force -f in debug mode -#ifndef DEBUG +#ifndef DEBUGON if (nofork) #endif argv[argc++] = "-f";