diff options
author | Harald Welte <laforge@gnumonks.org> | 2010-05-19 19:54:00 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2010-05-25 22:28:40 +0200 |
commit | 4ebdf747286541c52311517fbedd0cb128631a61 (patch) | |
tree | d20cf230542113607d2b7ee02f786e3a20dd06c9 /src/vty | |
parent | 93cf5a38eb503128016ce57f71071ca2f4415650 (diff) |
rename log_info to osmo_log_info to avoid namespace clash with app
Diffstat (limited to 'src/vty')
-rw-r--r-- | src/vty/logging_vty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vty/logging_vty.c b/src/vty/logging_vty.c index a7871963..896d79a9 100644 --- a/src/vty/logging_vty.c +++ b/src/vty/logging_vty.c @@ -33,7 +33,7 @@ #include <osmocom/vty/telnet_interface.h> #include <osmocom/vty/logging.h> -extern const struct log_info *log_info; +extern const struct log_info *osmo_log_info; static void _vty_output(struct log_target *tgt, const char *line) { @@ -291,7 +291,7 @@ DEFUN(show_logging_vty, vty_out(vty, "Logging was not enabled.%s", VTY_NEWLINE); return CMD_WARNING; } - vty_print_logtarget(vty, log_info, conn->dbg); + vty_print_logtarget(vty, osmo_log_info, conn->dbg); return CMD_SUCCESS; } |