No subject
Mon Nov 26 10:48:06 UTC 2007
#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);
}
----------------------------------------------------------------------
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