From 04e8a07bb5545e367a7b5ceed1cd0e25be37f921 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Wed, 5 May 2004 14:57:51 +0000 Subject: r494: patch from Stephan Kulow to fix a cut-n-paste error in strlen which caused Konqueror to crash (This used to be commit 5150b62420f6634391196501d0279ef039a7bcc8) --- source3/libsmb/libsmbclient.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/libsmb/libsmbclient.c') diff --git a/source3/libsmb/libsmbclient.c b/source3/libsmb/libsmbclient.c index ebbf28a12d..50af223726 100644 --- a/source3/libsmb/libsmbclient.c +++ b/source3/libsmb/libsmbclient.c @@ -1807,7 +1807,7 @@ static SMBCFILE *smbc_opendir_ctx(SMBCCTX *context, const char *fname) server, sizeof(server), share, sizeof(share), path, sizeof(path), - user, sizeof(path), + user, sizeof(user), password, sizeof(password), options, sizeof(options))) { DEBUG(4, ("no valid path\n")); -- cgit