Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag '6.5-rc6-smb3-client-fix' of git://git.samba.org/sfrench/cifs-2.6

Pull smb client fix from Steve French:
"A small SMB mount option fix, also for stable"

* tag '6.5-rc6-smb3-client-fix' of git://git.samba.org/sfrench/cifs-2.6:
smb: client: fix null auth

+4
+4
fs/smb/client/fs_context.c
··· 231 231 break; 232 232 case Opt_sec_none: 233 233 ctx->nullauth = 1; 234 + kfree(ctx->username); 235 + ctx->username = NULL; 234 236 break; 235 237 default: 236 238 cifs_errorf(fc, "bad security option: %s\n", value); ··· 1203 1201 case Opt_user: 1204 1202 kfree(ctx->username); 1205 1203 ctx->username = NULL; 1204 + if (ctx->nullauth) 1205 + break; 1206 1206 if (strlen(param->string) == 0) { 1207 1207 /* null user, ie. anonymous authentication */ 1208 1208 ctx->nullauth = 1;