The Samba-Bugzilla – Attachment 5524 Details for
Bug 7282
Credentials file format not backwards compatible to mount.smbfs
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
More clean version of last patch. Handles both cases with single if. Also, cosmetic change for consistent style inside of parens.
mount.cifs.c.patch (text/plain), 602 bytes, created by
Scott Lovenberg
on 2010-03-23 03:40:46 UTC
(
hide
)
Description:
More clean version of last patch. Handles both cases with single if. Also, cosmetic change for consistent style inside of parens.
Filename:
MIME Type:
Creator:
Scott Lovenberg
Created:
2010-03-23 03:40:46 UTC
Size:
602 bytes
patch
obsolete
>@@ -139,8 +139,8 @@ > break; > /* if whitespace - skip past it */ > } >- if (strncasecmp("username",line_buf+i,8) == 0) { >- temp_val = strchr(line_buf + i,'='); >+ if (strncasecmp("user",line_buf+i,4) == 0) { >+ temp_val = strchr(line_buf+i,'='); > if(temp_val) { > /* go past equals sign */ > temp_val++; >@@ -163,7 +163,7 @@ > strncpy(user_name,temp_val, length); > } > } >- } else if (strncasecmp("password",line_buf+i,8) == 0) { >+ } else if (strncasecmp("pass",line_buf+i,4) == 0) { > temp_val = strchr(line_buf+i,'='); > if(temp_val) { > /* go past equals sign */
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 7282
:
5523
|
5524
|
5591