summaryrefslogtreecommitdiff
path: root/pkg/auth/sip2/spec.go
diff options
context:
space:
mode:
authorkali kaneko (leap communications) <kali@leap.se>2020-01-24 23:09:50 -0600
committerkali kaneko (leap communications) <kali@leap.se>2020-01-24 23:59:42 -0600
commit307582d9d193f282fc20182468a02ed0c55b4f99 (patch)
treea1624dcf626cb6b984033c331e33b6b418b0eadc /pkg/auth/sip2/spec.go
parent1c9220e04016d035c3c688c315ceabe274f45dfc (diff)
sip authenticator
Diffstat (limited to 'pkg/auth/sip2/spec.go')
-rw-r--r--pkg/auth/sip2/spec.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/auth/sip2/spec.go b/pkg/auth/sip2/spec.go
index 9c4ac48..60a14d9 100644
--- a/pkg/auth/sip2/spec.go
+++ b/pkg/auth/sip2/spec.go
@@ -114,7 +114,7 @@ func getParser() *Parser {
txt := msg[:len(msg)-len(terminator)]
code, err := strconv.Atoi(txt[:2])
if nil != err {
- log.Println("Error parsing integer: %s", txt[:2])
+ log.Printf("Error parsing integer: %s\n", txt[:2])
}
spec := parser.getMessageSpecByCode(code)
txt = txt[2:]