diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-06-11 11:01:12 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-06-11 11:01:12 -0700 |
commit | 707d0c50ea5bb7209dcfe1c7c163edbd4af4a95e (patch) | |
tree | e5404c94e44933a524b5b26ebecbc2f4d0fb3eed /bgpd/bgp_aspath.c | |
parent | c7e479d91a7c835ee735bd02bd3097c96e7a955c (diff) | |
parent | 902286e87dd7107260e6fef20ab774ac66e3edbb (diff) | |
download | quagga-707d0c50ea5bb7209dcfe1c7c163edbd4af4a95e.tar.bz2 quagga-707d0c50ea5bb7209dcfe1c7c163edbd4af4a95e.tar.xz |
Merge branch 'jenner' of 192.168.100.1:git/vyatta-quagga into jenner
Diffstat (limited to 'bgpd/bgp_aspath.c')
-rw-r--r-- | bgpd/bgp_aspath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_aspath.c b/bgpd/bgp_aspath.c index a7c72a9d..c7c40094 100644 --- a/bgpd/bgp_aspath.c +++ b/bgpd/bgp_aspath.c @@ -1637,7 +1637,7 @@ aspath_gettoken (const char *buf, enum as_token *token, u_long *asno) /* Check actual AS value. */ if (isdigit ((int) *p)) { - u_short asval; + as_t asval; *token = as_token_asval; asval = (*p - '0'); |