From cd1da720248158a39da974a1583a842f5799a21c Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 5 Oct 2016 08:34:33 +0200 Subject: [PATCH] hack.. don't handle @ --- source3/libsmb/cliconnect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/libsmb/cliconnect.c b/source3/libsmb/cliconnect.c index f7acac39253e..445ed685a5d6 100644 --- a/source3/libsmb/cliconnect.c +++ b/source3/libsmb/cliconnect.c @@ -1339,7 +1339,7 @@ static char *cli_session_setup_get_account(TALLOC_CTX *mem_ctx, return NULL; } p = strchr_m(account, '@'); - if (p != NULL) { + if (0 && p != NULL) { *p = '\0'; } return account; -- 2.34.1