From cc03e5e941dac2ee5f977eeb63597917c17f6505 Mon Sep 17 00:00:00 2001 From: Peter Colberg Date: Thu, 17 Mar 2016 22:27:14 -0400 Subject: Fix spelling error in stun log messages --- src/stun/stun.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/stun/stun.cxx b/src/stun/stun.cxx index dd8b8d0..b2aa08b 100644 --- a/src/stun/stun.cxx +++ b/src/stun/stun.cxx @@ -1025,7 +1025,7 @@ string stunMsg2Str(const StunMessage &m) { s += "\n"; if (m.hasMappedAddress) { - s += "Mapped Addres = "; + s += "Mapped Address = "; s += h_ip2str(m.mappedAddress.ipv4.addr); s += ':'; s += int2str(m.mappedAddress.ipv4.port); @@ -1034,7 +1034,7 @@ string stunMsg2Str(const StunMessage &m) { if (m.hasResponseAddress) { - s += "Response Addres = "; + s += "Response Address = "; s += h_ip2str(m.responseAddress.ipv4.addr); s += ':'; s += int2str(m.responseAddress.ipv4.port); @@ -1058,7 +1058,7 @@ string stunMsg2Str(const StunMessage &m) { } if (m.hasSourceAddress) { - s += "Source Addres = "; + s += "Source Address = "; s += h_ip2str(m.sourceAddress.ipv4.addr); s += ':'; s += int2str(m.sourceAddress.ipv4.port); @@ -1066,7 +1066,7 @@ string stunMsg2Str(const StunMessage &m) { } if (m.hasChangedAddress) { - s += "Changed Addres = "; + s += "Changed Address = "; s += h_ip2str(m.changedAddress.ipv4.addr); s += ':'; s += int2str(m.changedAddress.ipv4.port); -- cgit v1.2.3