From eefc6f0ab4eb9aea426678228b2815c472f79b4a Mon Sep 17 00:00:00 2001 From: Derrell Lipman Date: Thu, 31 Mar 2005 21:17:36 +0000 Subject: r6157: 'editorial changes' to example code (This used to be commit fa0294ddbf7c93c24fca670b7ed52821a0507174) --- examples/libsmbclient/teststat.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/libsmbclient/teststat.c b/examples/libsmbclient/teststat.c index d67f626d78..29517efb6f 100644 --- a/examples/libsmbclient/teststat.c +++ b/examples/libsmbclient/teststat.c @@ -8,6 +8,7 @@ int main(int argc, char * argv[]) { + int debug = 0; char buffer[16384]; char mtime[32]; char ctime[32]; @@ -39,7 +40,7 @@ int main(int argc, char * argv[]) return 1; } - smbc_init(get_auth_data_fn, 0); + smbc_init(get_auth_data_fn, debug); if (smbc_stat(pSmbPath, &st) < 0) { -- cgit