summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-11-14 01:38:01 +0000
committerTim Potter <tpot@samba.org>2001-11-14 01:38:01 +0000
commit31b91bfe4ef65630429445d9c84c1a853e47ee7c (patch)
treed0ea016c4c0902971c0828dbf7ba3691a8ec86f8 /source3/lib
parentdc6688ab95148b70ae65bdd0d9caac95f57d6aee (diff)
downloadsamba-31b91bfe4ef65630429445d9c84c1a853e47ee7c.tar.gz
samba-31b91bfe4ef65630429445d9c84c1a853e47ee7c.tar.bz2
samba-31b91bfe4ef65630429445d9c84c1a853e47ee7c.zip
Removed unused variable.
(This used to be commit c8c7da237dc17d9b785bc15b9b569caeeb6d283e)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/util_str.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c
index dc9dbd8ed7..4c17d1f08b 100644
--- a/source3/lib/util_str.c
+++ b/source3/lib/util_str.c
@@ -243,7 +243,6 @@ BOOL strisnormal(char *s)
****************************************************************************/
void string_replace(char *s,char oldc,char newc)
{
- smb_ucs2_t *ptr;
push_ucs2(NULL, tmpbuf,s, sizeof(tmpbuf), STR_TERMINATE);
string_replace_w(tmpbuf, UCS2_CHAR(oldc), UCS2_CHAR(newc));
pull_ucs2(NULL, s, tmpbuf, -1, sizeof(tmpbuf), STR_TERMINATE);