summaryrefslogtreecommitdiff
path: root/srv.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-07-17 22:06:26 +0000
committerMark Spencer <markster@digium.com>2004-07-17 22:06:26 +0000
commita1cf0fbd43de9b4a828b29a511e96a5d47661406 (patch)
tree43bace686e5580d41e7cbfd5bcd87cd82beea2be /srv.c
parent2f2122875a8375f6abdffa12aac0b8df70cd811e (diff)
REduce chattyness
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3465 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'srv.c')
-rwxr-xr-xsrv.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/srv.c b/srv.c
index 63118685e..ab44e55ac 100755
--- a/srv.c
+++ b/srv.c
@@ -58,7 +58,8 @@ static int parse_srv(unsigned char *host, int hostlen, int *portno, unsigned cha
return -1;
}
if (res && strcmp(repl, ".")) {
- ast_verbose( VERBOSE_PREFIX_3 "parse_srv: SRV mapped to host %s, port %d\n", repl, ntohs(srv->portnum));
+ if (option_verbose > 3)
+ ast_verbose( VERBOSE_PREFIX_3 "parse_srv: SRV mapped to host %s, port %d\n", repl, ntohs(srv->portnum));
if (host) {
strncpy(host, repl, hostlen - 1);
host[hostlen-1] = '\0';