aboutsummaryrefslogtreecommitdiffstats
path: root/capture
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2021-06-19 22:26:58 +0100
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-06-21 00:07:21 +0000
commit7dea683bf1f72621c995ccdbd478bbf66d7e970b (patch)
tree4ea13739acf645575c954c9d563942630e47693f /capture
parent628fe2549a47f4f246dd645d5d15dad3edc35cb7 (diff)
wslog: Shorten ws_log_message_is_active() name
Diffstat (limited to 'capture')
-rw-r--r--capture/capture_sync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/capture/capture_sync.c b/capture/capture_sync.c
index eca30b5e51..e8bb67f44f 100644
--- a/capture/capture_sync.c
+++ b/capture/capture_sync.c
@@ -1098,7 +1098,7 @@ sync_pipe_run_command(char* const argv[], gchar **data, gchar **primary_msg,
int logging_enabled;
/* check if logging is actually enabled, otherwise don't expend the CPU generating logging */
- logging_enabled = ws_log_message_is_active(WS_LOG_DOMAIN, LOG_LEVEL_INFO);
+ logging_enabled = ws_log_msg_is_active(WS_LOG_DOMAIN, LOG_LEVEL_INFO);
if (logging_enabled) {
start_time = g_get_monotonic_time();
ws_info("sync_pipe_run_command() starts");