diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-10-19 09:53:23 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:01:55 -0500 |
commit | 23d3b714f1b1af6fae60618cb55988f60a64cffd (patch) | |
tree | acddbf4bd4967e8c76565c9f47b1f0dcd649223f | |
parent | b98218c84be222ee36d659528c42efbc8e359e6f (diff) | |
download | samba-23d3b714f1b1af6fae60618cb55988f60a64cffd.tar.gz samba-23d3b714f1b1af6fae60618cb55988f60a64cffd.tar.bz2 samba-23d3b714f1b1af6fae60618cb55988f60a64cffd.zip |
r3061: change a debug to help track down a charset problem
(This used to be commit 4d2497b7f4cb6aa6fdf1e03b56f72b1022cb92b8)
-rw-r--r-- | source4/lib/charcnv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/lib/charcnv.c b/source4/lib/charcnv.c index 10063c9f3c..40e68df984 100644 --- a/source4/lib/charcnv.c +++ b/source4/lib/charcnv.c @@ -192,7 +192,8 @@ ssize_t convert_string_talloc(TALLOC_CTX *ctx, charset_t from, charset_t to, if (descriptor == (smb_iconv_t)-1 || descriptor == (smb_iconv_t)0) { /* conversion not supported, return -1*/ - DEBUG(3, ("convert_string_talloc: conversion not supported!\n")); + DEBUG(3, ("convert_string_talloc: conversion from %s to %s not supported!\n", + charset_name(from), charset_name(to))); return -1; } |