aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey <jeffryan@tamu.edu>2022-03-07 20:55:57 -0600
committerJeffrey <jeffryan@tamu.edu>2022-04-18 09:55:21 -0500
commitb49ed5916658e52d8aad9eeee025d7dba97f1108 (patch)
tree327bc22879603b74a2e6872f9ea936657bb299ae
parentFactor out move_it_backward from misc_language.h (diff)
downloadmonero-b49ed5916658e52d8aad9eeee025d7dba97f1108.tar.xz
Remove the only 4 non-UTF8 characters in codebase
Relevant commit in old PR: 1b798a7042070cc8063bd341ebf7025da554b632
-rw-r--r--contrib/epee/include/net/local_ip.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/epee/include/net/local_ip.h b/contrib/epee/include/net/local_ip.h
index 1c501d24b..6dfa19e6e 100644
--- a/contrib/epee/include/net/local_ip.h
+++ b/contrib/epee/include/net/local_ip.h
@@ -43,9 +43,9 @@ namespace epee
ip = SWAP32LE(ip);
/*
local ip area
- 10.0.0.0 — 10.255.255.255
- 172.16.0.0 — 172.31.255.255
- 192.168.0.0 — 192.168.255.255
+ 10.0.0.0 ... 10.255.255.255
+ 172.16.0.0 ... 172.31.255.255
+ 192.168.0.0 ... 192.168.255.255
*/
if( (ip | 0xffffff00) == 0xffffff0a)
return true;
@@ -70,7 +70,7 @@ namespace epee
//MAKE_IP
/*
loopback ip
- 127.0.0.0 — 127.255.255.255
+ 127.0.0.0 ... 127.255.255.255
*/
return false;
}