summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Colberg <peter@colberg.org>2016-03-17 22:27:14 -0400
committerPeter Colberg <peter@colberg.org>2016-03-17 22:27:14 -0400
commitcc03e5e941dac2ee5f977eeb63597917c17f6505 (patch)
treed96cec615e549a8e101431ea81f18d155fd56821
parent61b0b6baad775afd5e351ba49ce742eed1ff77a9 (diff)
downloadtwinkle-cc03e5e941dac2ee5f977eeb63597917c17f6505.tar
twinkle-cc03e5e941dac2ee5f977eeb63597917c17f6505.tar.gz
twinkle-cc03e5e941dac2ee5f977eeb63597917c17f6505.tar.lz
twinkle-cc03e5e941dac2ee5f977eeb63597917c17f6505.tar.xz
twinkle-cc03e5e941dac2ee5f977eeb63597917c17f6505.zip
Fix spelling error in stun log messages
-rw-r--r--src/stun/stun.cxx8
1 files 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);