From: Andreas Eversberg Date: Mon, 4 Jan 2010 18:17:27 +0000 (+0100) Subject: Harald provided us with this fix for the current OpenBSC API. X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=commitdiff_plain;h=eb47421a208cdcbf3a36675f2d4ec2a1dcfc0d3d;hp=ee7da8a9d7f64695f0111f8633d5f8ea173b77be Harald provided us with this fix for the current OpenBSC API. debug_target arg is required for debug parsing. --- diff --git a/gsm.cpp b/gsm.cpp index 63ba5e5..62df3e3 100644 --- a/gsm.cpp +++ b/gsm.cpp @@ -32,6 +32,7 @@ extern int bsc_shutdown_net(struct gsm_network *net); void talloc_ctx_init(void); void on_dso_load_token(void); void on_dso_load_rrlp(void); +static struct debug_target *stderr_target; #include "gsm_audio.h" @@ -1610,8 +1611,9 @@ int gsm_init(void) } /* set debug */ + stderr_target = debug_target_create_stderr(); if (gsm->conf.debug[0]) - debug_parse_category_mask(gsm->conf.debug); + debug_parse_category_mask(stderr_target, gsm->conf.debug); /* open pcap file */ if (gsm->conf.pcapfile[0]) {