diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-06-15 11:24:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:17:28 -0500 |
commit | d93b40867893cedbac32970ddb38701479807e29 (patch) | |
tree | 20d6257f0d82e7d16aabdbe1b6b1ba76d1c91608 | |
parent | 05f59b2c349d2f5a0f01b8377ba9e064d2f83e75 (diff) | |
download | samba-d93b40867893cedbac32970ddb38701479807e29.tar.gz samba-d93b40867893cedbac32970ddb38701479807e29.tar.bz2 samba-d93b40867893cedbac32970ddb38701479807e29.zip |
r16251: for i in `seq 1 1000`
do
echo "I will always compile before commit :-)"
done
Also fix Klokwork ID 806.
Volker
(This used to be commit 4974c598c00abc20cfb73eee12a7c49c279e0f54)
-rw-r--r-- | source3/client/client.c | 2 | ||||
-rw-r--r-- | source3/utils/net_usershare.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index c1ff1151c0..94fcaaca00 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1008,7 +1008,7 @@ static int cmd_mget(void) while (next_token_nr(NULL,p,NULL,sizeof(buf))) { pstrcpy(mget_mask,cur_dir); - if ((mask[0] != '\0') && (mget_mask[strlen(mget_mask)-1]!='\\')) + if ((mget_mask[0] != '\0') && (mget_mask[strlen(mget_mask)-1]!='\\')) pstrcat(mget_mask,"\\"); if (*p == '\\') diff --git a/source3/utils/net_usershare.c b/source3/utils/net_usershare.c index 1ee156c4ee..ca9ca4e6e2 100644 --- a/source3/utils/net_usershare.c +++ b/source3/utils/net_usershare.c @@ -129,7 +129,7 @@ int net_usershare_usage(int argc, const char **argv) static void get_basepath(pstring basepath) { pstrcpy(basepath, lp_usershare_path()); - if (basepath[strlen(basepath)-1] == '/') { + if ((basepath[0] != '\0') && (basepath[strlen(basepath)-1] == '/')) { basepath[strlen(basepath)-1] = '\0'; } } |