Attention is currently required from: dexter.
Patch set 4:Code-Review +2
1 comment:
File src/logging.c:
* Check whether the logging framework is initialized (osmo_log_info exists) */
int log_initialized(void)
{
if (!osmo_log_info)
return 0;
return 1;
}
This variable is global, but I think its not exported
Any global variable is exported, the two terms are identical. You probably mean it was not declared. That is a bug, and you seem to have fixed it.
To view, visit change 26950. To unsubscribe, or for help writing mail filters, visit settings.