diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-03-21 18:01:43 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-03-21 18:01:43 +0100 |
commit | 1d0e634a651f234c3942c6b82164470fa2432058 (patch) | |
tree | 6977229f9148774a4338c489134207ab8b0f5c9f /src/ipcpd/normal/routing.c | |
parent | 122202761b3fb09a883ca8081eb1eb4243cd484d (diff) | |
download | ouroboros-1d0e634a651f234c3942c6b82164470fa2432058.tar.gz ouroboros-1d0e634a651f234c3942c6b82164470fa2432058.zip |
ipcpd: normal: Several bugfixes
These solve several bugfixes in the normal.
Diffstat (limited to 'src/ipcpd/normal/routing.c')
-rw-r--r-- | src/ipcpd/normal/routing.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ipcpd/normal/routing.c b/src/ipcpd/normal/routing.c index 0b82b70d..211becb4 100644 --- a/src/ipcpd/normal/routing.c +++ b/src/ipcpd/normal/routing.c @@ -97,9 +97,10 @@ static int routing_neighbor_event(enum nb_event event, size_t len; uint8_t * data; - sprintf(fso_name, "%" PRIx64 "-%" PRIx64, + path[0] = '\0'; + sprintf(fso_name, "%" PRIu64 "-%" PRIu64, ipcpi.dt_addr, conn.conn_info.addr); - rib_path_append(rib_path_append(path, ROUTING_PATH), fso_name); + rib_path_append(rib_path_append(path, ROUTING_NAME), fso_name); switch (event) { case NEIGHBOR_ADDED: |