diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-07-04 08:03:47 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-07-04 08:03:47 +0000 |
commit | f51260a65eaa73f60848903d2bf64abec8305a9b (patch) | |
tree | 0454d8caa89c0347367738b6385f3e33e4d884c6 /source3/lib | |
parent | 0225d0c26d8512e72b3fcac4a9e40592f9cb131f (diff) | |
download | samba-f51260a65eaa73f60848903d2bf64abec8305a9b.tar.gz samba-f51260a65eaa73f60848903d2bf64abec8305a9b.tar.bz2 samba-f51260a65eaa73f60848903d2bf64abec8305a9b.zip |
got rid of __FUNCTION__ debug
(This used to be commit 815ca752744c2ae93390445f4bb6532d396bbc59)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/iconv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/iconv.c b/source3/lib/iconv.c index a22c84997d..0b685d18ea 100644 --- a/source3/lib/iconv.c +++ b/source3/lib/iconv.c @@ -247,7 +247,7 @@ static size_t weird_pull(char **inbuf, size_t *inbytesleft, weird_table[i].len) == 0) { if (*inbytesleft < weird_table[i].len) { DEBUG(0,("ERROR: truncated weird string\n")); - smb_panic(__FUNCTION__); + smb_panic("weird_pull"); } else { (*outbuf)[0] = weird_table[i].from; @@ -289,7 +289,7 @@ static size_t weird_push(char **inbuf, size_t *inbytesleft, (*inbuf)[1] == 0) { if (*outbytesleft < weird_table[i].len) { DEBUG(0,("No room for weird character\n")); - smb_panic(__FUNCTION__); + smb_panic("weird_push"); } else { memcpy(*outbuf, weird_table[i].to, weird_table[i].len); |