From 23d3b714f1b1af6fae60618cb55988f60a64cffd Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 19 Oct 2004 09:53:23 +0000 Subject: r3061: change a debug to help track down a charset problem (This used to be commit 4d2497b7f4cb6aa6fdf1e03b56f72b1022cb92b8) --- source4/lib/charcnv.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } -- cgit