No subject
Mon Jan 7 09:52:59 UTC 2008
#if !defined(USE_TLS) || !defined(USE_TCP) \
|| !defined(USE_MCAST)
static void warn(char* s)
{
LM_WARN("warning in config file, line %d, column %d-%d: %s\n", line, startcolumn,
column, s);
cfg_errors++;
}
#endif
Should be either:
static void error(char* s)
{
LM_ERR("error in config file, line %d, column %d-%d: %s\n", line, startcolumn,
column, s);
cfg_errors++;
}
OR
static void warn(char* s)
{
LM_WARN("warning in config file, line %d, column %d-%d: %s\n", line, startcolumn,
column, s);
}
----------------------------------------------------------------------
>Comment By: Henning Westerholt (henningw)
Date: 2008-02-06 16:25
Message:
Logged In: YES
user_id=337916
Originator: NO
The increment of the cfg_errors were removed from the warn function in the
trunk version.
Thank you for the report,
Henning
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=743020&aid=1856033&group_id=139143
More information about the Devel
mailing list