From 40c35f02c555ed2e157aa625c424b40e07697473 Mon Sep 17 00:00:00 2001 From: "Andrew V. Samoilov" Date: Fri, 13 Sep 2002 10:04:21 +0000 Subject: [PATCH] * main.c (process_args) [WITH_SMBFS]: Call smbfs_set_debugf() for "-l" option. --- src/ChangeLog | 5 +++++ src/main.c | 3 +++ 2 files changed, 8 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 6f7f7f056..b3036828b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2002-09-13 Andrew V. Samoilov + + * main.c (process_args) [WITH_SMBFS]: Call smbfs_set_debugf() + for "-l" option. + 2002-09-13 Pavel Roskin * main.c: Fully remove obsolete "-m" option. diff --git a/src/main.c b/src/main.c index 645580027..746a3a0fa 100644 --- a/src/main.c +++ b/src/main.c @@ -2202,6 +2202,9 @@ process_args (int c, const char *option_arg) #ifdef USE_NETCODE case 'l': ftpfs_set_debug (option_arg); +#ifdef WITH_SMBFS + smbfs_set_debugf (option_arg); +#endif break; #ifdef WITH_SMBFS