diff --git a/src/filters/rclxls b/src/filters/rclxls index fad14606..284f84d1 100755 --- a/src/filters/rclxls +++ b/src/filters/rclxls @@ -1,5 +1,5 @@ #!/bin/sh -# @(#$Id: rclxls,v 1.1 2006-09-05 09:52:23 dockes Exp $ (C) 2004 J.F.Dockes +# @(#$Id: rclxls,v 1.2 2006-11-20 15:28:30 dockes Exp $ (C) 2004 J.F.Dockes # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or @@ -28,7 +28,7 @@ # set variables LANG=C ; export LANG LC_ALL=C ; export LC_ALL -progname="rclsoff" +progname="rclxls" # show help message if test $# -ne 1 -o "$1" = "--help" diff --git a/src/utils/transcode.cpp b/src/utils/transcode.cpp index 2cb77c07..78dc9f85 100644 --- a/src/utils/transcode.cpp +++ b/src/utils/transcode.cpp @@ -1,5 +1,5 @@ #ifndef lint -static char rcsid[] = "@(#$Id: transcode.cpp,v 1.8 2006-04-28 07:23:46 dockes Exp $ (C) 2004 J.F.Dockes"; +static char rcsid[] = "@(#$Id: transcode.cpp,v 1.9 2006-11-20 15:29:08 dockes Exp $ (C) 2004 J.F.Dockes"; #endif /* * This program is free software; you can redistribute it and/or modify @@ -102,7 +102,8 @@ bool transcode(const string &in, string &out, const string &icode, iconv_close(ic); //fprintf(stderr, "TRANSCODE OUT:\n%s\n", out.c_str()); if (mecnt) - LOGDEB(("transcode: %d errors\n", mecnt)); + LOGINFO(("transcode: [%s]->[%s] %d errors\n", + icode.c_str(), ocode.c_str(), mecnt)); if (ecnt) *ecnt = mecnt; return ret;