diff options
author | James Peach <jpeach@samba.org> | 2007-05-19 04:23:04 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:22:14 -0500 |
commit | e61f235796ff2da34fb207f48e2bba832c30740b (patch) | |
tree | 1a791f16920fdfb557975d197fdcc0ee68428ee0 /source3 | |
parent | 63e74f305920a44606d1b0380c605e00fca14940 (diff) | |
download | samba-e61f235796ff2da34fb207f48e2bba832c30740b.tar.gz |
r23009: Both contains a strchr_m(server,'/') few lines after replacing all / with \.
This patch removes this dead code.
Patch from Pascal Terjan <pterjan@mandriva.com> for bug #2313.
(This used to be commit 04b84baef344206d97776e04a25f4bd214eea28f)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/smbcacls.c | 7 | ||||
-rw-r--r-- | source3/utils/smbcquotas.c | 7 |
2 files changed, 4 insertions, 10 deletions
diff --git a/source3/utils/smbcacls.c b/source3/utils/smbcacls.c index 67de8c73355..5717df2dfaf 100644 --- a/source3/utils/smbcacls.c +++ b/source3/utils/smbcacls.c @@ -902,11 +902,8 @@ static struct cli_state *connect_one(const char *share) fstrcpy(server,path+2); share = strchr_m(server,'\\'); if (!share) { - share = strchr_m(server,'/'); - if (!share) { - printf("Invalid argument: %s\n", share); - return -1; - } + printf("Invalid argument: %s\n", share); + return -1; } *share = 0; diff --git a/source3/utils/smbcquotas.c b/source3/utils/smbcquotas.c index 40f4a86f96b..ae2e6a5956f 100644 --- a/source3/utils/smbcquotas.c +++ b/source3/utils/smbcquotas.c @@ -500,11 +500,8 @@ FSQFLAGS:QUOTA_ENABLED/DENY_DISK/LOG_SOFTLIMIT/LOG_HARD_LIMIT", "SETSTRING" }, pstrcpy(server,path+2); share = strchr_m(server,'\\'); if (!share) { - share = strchr_m(server,'/'); - if (!share) { - printf("Invalid argument: %s\n", share); - exit(EXIT_PARSE_ERROR); - } + printf("Invalid argument: %s\n", share); + exit(EXIT_PARSE_ERROR); } *share = 0; |