*** empty log message ***

This commit is contained in:
dockes 2006-11-20 15:29:08 +00:00
parent 7467cd8fd2
commit 0d3fd7e0c6
2 changed files with 5 additions and 4 deletions

View File

@ -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"

View File

@ -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;