You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In file udatapath.c dpid = strtoll(optarg, NULL, 12);
This will cause a mistake due to this is a 12 decimal conversion.
For instance, dpid will be NULL while dpid = 0xC or 0xD.
Furthermore, some switches cannot be created
Therefore, I think it should be dpid = strtoll(optarg, NULL, 16);
The text was updated successfully, but these errors were encountered:
In file udatapath.c
dpid = strtoll(optarg, NULL, 12);
This will cause a mistake due to this is a 12 decimal conversion.
For instance, dpid will be NULL while dpid = 0xC or 0xD.
Furthermore, some switches cannot be created
Therefore, I think it should be
dpid = strtoll(optarg, NULL, 16);
The text was updated successfully, but these errors were encountered: