diff options
author | Volker Lendecke <vl@samba.org> | 2008-02-25 09:51:33 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-02-25 09:51:33 +0100 |
commit | 90ad42fad3b59384953faff30925affb32677e03 (patch) | |
tree | 37112808549b275e13045f9c0ed1a39ef872b409 | |
parent | fcee8fee63fc907f106477a55d651b5a1be692bf (diff) | |
download | samba-90ad42fad3b59384953faff30925affb32677e03.tar.gz samba-90ad42fad3b59384953faff30925affb32677e03.tar.bz2 samba-90ad42fad3b59384953faff30925affb32677e03.zip |
Fix confusing error message -- bug 5252
Thanks to Walter Franzini
(This used to be commit 19de47fef1b35c47885acc40760a232e4643079c)
-rw-r--r-- | source3/client/mount.cifs.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/source3/client/mount.cifs.c b/source3/client/mount.cifs.c index 44614f6e8a..c68c9ee7f7 100644 --- a/source3/client/mount.cifs.c +++ b/source3/client/mount.cifs.c @@ -205,8 +205,10 @@ static int open_cred_file(char * file_name) /* go past equals sign */ temp_val++; for(length = 0;length<4087;length++) { - if(temp_val[length] == '\n') + if ((temp_val[length] == '\n') + || (temp_val[length] == '\0')) { break; + } } if(length > 4086) { printf("mount.cifs failed due to malformed username in credentials file"); @@ -229,7 +231,7 @@ static int open_cred_file(char * file_name) /* go past equals sign */ temp_val++; for(length = 0;length<65;length++) { - if(temp_val[length] == '\n') + if(temp_val[length] == '\n' || temp_val[length] == '\0') break; } if(length > 64) { @@ -258,7 +260,7 @@ static int open_cred_file(char * file_name) if(verboseflag) printf("\nDomain %s\n",temp_val); for(length = 0;length<65;length++) { - if(temp_val[length] == '\n') + if(temp_val[length] == '\n' || temp_val[length] == '\0') break; } if(length > 64) { |