Skip to content

Commit

Permalink
orchagent: Replacing 0::0 with :: (sonic-net#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shuotian Cheng authored Oct 9, 2016
1 parent bb85db3 commit 7e935e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions orchagent/routeorch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ RouteOrch::RouteOrch(DBConnector *db, string tableName, NeighOrch *neighOrch) :
}

// add default v6 route into the m_syncdRoutes
m_syncdRoutes[v6_default_ip_prefix] = IpAddresses("0::0");
m_syncdRoutes[v6_default_ip_prefix] = IpAddresses("::");

SWSS_LOG_NOTICE("Create v6 default route with packet action drop");
}
Expand Down Expand Up @@ -525,7 +525,7 @@ bool RouteOrch::removeRoute(IpPrefix ipPrefix)
}
else
{
m_syncdRoutes[ipPrefix] = IpAddresses("0::0");
m_syncdRoutes[ipPrefix] = IpAddresses("::");
}
}
else
Expand Down

0 comments on commit 7e935e8

Please sign in to comment.