if (cidr < 0) {
SCLogError(SC_ERR_INVALID_SIGNATURE,
"netmask \"%s\" is not usable. Only netmasks that are compatible with "
- "CIDR notation are supported. See #5168.",
+ "CIDR notation are supported. See ticket #5168.",
mask);
goto error;
}
if (stats_decoder_events &&
strcmp(stats_decoder_events_prefix, "decoder") == 0) {
- SCLogWarning(SC_WARN_EVE_MISSING_EVENTS, "eve.stats will not display "
- "all decoder events correctly. See #2225. Set a prefix in "
+ SCLogWarning(SC_WARN_EVE_MISSING_EVENTS,
+ "eve.stats will not display "
+ "all decoder events correctly. See ticket #2225. Set a prefix in "
"stats.decoder-events-prefix.");
}
}
if (strcmp(output->val, "file-log") == 0) {
- SCLogWarning(SC_ERR_NOT_SUPPORTED,
- "file-log is no longer supported,"
- " use eve.files instead "
- "(see https://redmine.openinfosecfoundation.org/issues/2376"
- " for an explanation)");
+ SCLogWarning(SC_ERR_NOT_SUPPORTED, "file-log is no longer supported,"
+ " use eve.files instead "
+ "(see ticket #2376"
+ " for an explanation)");
continue;
} else if (strncmp(output->val, "unified-", sizeof("unified-") - 1) == 0) {
- SCLogWarning(SC_ERR_NOT_SUPPORTED,
- "Unified1 is no longer supported,"
- " use Unified2 instead "
- "(see https://redmine.openinfosecfoundation.org/issues/353"
- " for an explanation)");
+ SCLogWarning(SC_ERR_NOT_SUPPORTED, "Unified1 is no longer supported,"
+ " use Unified2 instead "
+ "(see ticket #353"
+ " for an explanation)");
continue;
} else if (strncmp(output->val, "unified2-", sizeof("unified2-") - 1) == 0) {
SCLogWarning(SC_ERR_NOT_SUPPORTED,
if (!ptv->vlan_hdr_warned) {
SCLogWarning(SC_ERR_PF_RING_VLAN, "no VLAN header in the raw "
- "packet. See #2355.");
+ "packet. See ticket #2355.");
ptv->vlan_hdr_warned = true;
}
}
pthread_mutex_lock(&luajit_states_lock);
if (luajit_states_cnt_max > luajit_states_size) {
SCLogNotice("luajit states used %d is bigger than pool size %d. Set "
- "luajit.states to %d to avoid memory issues. "
- "See #1577 and #1955.", luajit_states_cnt_max, luajit_states_size,
- luajit_states_cnt_max);
+ "luajit.states to %d to avoid memory issues. "
+ "See tickets #1577 and #1955.",
+ luajit_states_cnt_max, luajit_states_size, luajit_states_cnt_max);
}
PoolFree(luajit_states);
luajit_states = NULL;
s = (lua_State *)PoolGet(luajit_states);
if (s != NULL) {
if (luajit_states_cnt == luajit_states_size) {
- SCLogWarning(SC_WARN_LUA_SCRIPT, "luajit states pool size %d "
+ SCLogWarning(SC_WARN_LUA_SCRIPT,
+ "luajit states pool size %d "
"reached. Increase luajit.states config option. "
- "See #1577 and #1955", luajit_states_size);
+ "See tickets #1577 and #1955",
+ luajit_states_size);
}
luajit_states_cnt++;