diff options
author | Jordan Augé <jordan.auge+fdio@cisco.com> | 2019-10-08 15:11:40 +0200 |
---|---|---|
committer | Jordan Augé <jordan.auge+fdio@cisco.com> | 2019-10-08 15:11:40 +0200 |
commit | 3dc2973161d71060cbea62063d219077f531af8a (patch) | |
tree | 7b08c1077695c47c292a063cc926a05a2db75a39 /libtransport/src | |
parent | 1bc4aca90da898424da7609af59aec5ac4770f73 (diff) |
[HICN-306] Wrong representation format in ip_prefix_ntop causes parsing issues
Change-Id: I16c8059ce537f338c15434acc87ac0e4baf87049
Signed-off-by: Jordan Augé <jordan.auge+fdio@cisco.com>
Diffstat (limited to 'libtransport/src')
-rw-r--r-- | libtransport/src/hicn/transport/core/prefix.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libtransport/src/hicn/transport/core/prefix.cc b/libtransport/src/hicn/transport/core/prefix.cc index badbf3b3b..6b87ccd1f 100644 --- a/libtransport/src/hicn/transport/core/prefix.cc +++ b/libtransport/src/hicn/transport/core/prefix.cc @@ -133,7 +133,7 @@ std::string Prefix::getNetwork() const { std::string network(size, 0); - if (ip_prefix_ntop(&ip_address_, (char *)network.c_str(), size) < 0) { + if (ip_prefix_ntop_short(&ip_address_, (char *)network.c_str(), size) < 0) { throw errors::RuntimeException( "Impossible to retrieve network from ip address."); } |