mirror of
https://github.com/ceph/ceph
synced 2025-04-01 23:02:17 +00:00
msgr: brackets (not braces) for ipv6 addrs
Sigh Signed-off-by: Sage Weil <sage@newdream.net>
This commit is contained in:
parent
71b9daa85d
commit
c91c8a3115
@ -10,11 +10,11 @@ bool entity_addr_t::parse(const char *s, const char **end)
|
||||
memset(this, 0, sizeof(*this));
|
||||
|
||||
const char *p = s;
|
||||
bool braces = false;
|
||||
bool brackets = false;
|
||||
bool ipv6 = false;
|
||||
if (*p == '{') {
|
||||
if (*p == '[') {
|
||||
p++;
|
||||
braces = true;
|
||||
brackets = true;
|
||||
ipv6 = true;
|
||||
}
|
||||
|
||||
@ -48,8 +48,8 @@ bool entity_addr_t::parse(const char *s, const char **end)
|
||||
return false;
|
||||
}
|
||||
|
||||
if (braces) {
|
||||
if (*p != '}')
|
||||
if (brackets) {
|
||||
if (*p != ']')
|
||||
return false;
|
||||
p++;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user