diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-04-26 22:10:33 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-04-26 22:10:33 -0400 | 
| commit | 838cf8aba548d8fae9ddfb4313dd361f1047865a (patch) | |
| tree | a0a6410a6073014c9b45a95ff8b4563e767eb639 /eigrpd/eigrp_structs.h | |
| parent | 171616cceff75cdab7c0bb783c76f6138cd5fc5d (diff) | |
eigrpd: Switch u_int64_t -> uint64_t
Apparently u_int64_t is not available (or we don't pull
the right headers in for solaris based systems ).
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'eigrpd/eigrp_structs.h')
| -rw-r--r-- | eigrpd/eigrp_structs.h | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/eigrpd/eigrp_structs.h b/eigrpd/eigrp_structs.h index 6e90c8cbae..b891475c2c 100644 --- a/eigrpd/eigrp_structs.h +++ b/eigrpd/eigrp_structs.h @@ -106,8 +106,8 @@ struct eigrp    struct list *topology_table; -  u_int64_t serno; /* Global serial number counter for topology entry changes*/ -  u_int64_t serno_last_update; /* Highest serial number of information send by last update*/ +  uint64_t serno; /* Global serial number counter for topology entry changes*/ +  uint64_t serno_last_update; /* Highest serial number of information send by last update*/    struct list *topology_changes_internalIPV4;    struct list *topology_changes_externalIPV4; @@ -492,7 +492,7 @@ struct eigrp_prefix_entry    //If network type is REMOTE_EXTERNAL, pointer will have reference to its external TLV    struct TLV_IPv4_External_type *extTLV; -  u_int64_t serno; /*Serial number for this entry. Increased with each change of entry*/ +  uint64_t serno; /*Serial number for this entry. Increased with each change of entry*/  };  /* EIGRP Topology table record structure */  | 
