From 44375c0616abd706a6af2948c96578a045b9a463 Mon Sep 17 00:00:00 2001 From: Sean Bright Date: Sun, 16 Sep 2018 07:08:29 -0400 Subject: [PATCH] res_srtp.c: Show linked version of libsrtp on module init Change-Id: Ib0a645d6985de5757cc4399ed2524b2d02c4f342 --- res/res_srtp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/res/res_srtp.c b/res/res_srtp.c index 10caec60c0..a03cb05923 100644 --- a/res/res_srtp.c +++ b/res/res_srtp.c @@ -601,6 +601,8 @@ static int res_srtp_init(void) return -1; } + ast_verb(2, "%s initialized\n", srtp_get_version_string()); + g_initialized = 1; return 0; }