diff options
| author | hasso <hasso> | 2004-09-23 19:18:23 +0000 | 
|---|---|---|
| committer | hasso <hasso> | 2004-09-23 19:18:23 +0000 | 
| commit | 52dc7ee65f8d887b0730abc0a5d44d27fc6ecafd (patch) | |
| tree | a557339540c56dd3953c29a50ca0e48c1911efc8 /zebra/interface.h | |
| parent | 44983cf8a9c587dfbcad294b9dfe4dccbb68ba98 (diff) | |
Remove usage of evil list and listnode typedefs.
Diffstat (limited to 'zebra/interface.h')
| -rw-r--r-- | zebra/interface.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/zebra/interface.h b/zebra/interface.h index 88049b40..b38a9221 100644 --- a/zebra/interface.h +++ b/zebra/interface.h @@ -139,7 +139,7 @@ struct rtadvconf       protocols as being on-link for the interface from which the       advertisement is sent. The link-local prefix SHOULD NOT be       included in the list of advertised prefixes. */ -  list AdvPrefixList; +  struct list *AdvPrefixList;  };  #endif /* RTADV */ @@ -157,7 +157,7 @@ struct zebra_if    u_char rtadv_enable;    /* Interface's address. */ -  list address; +  struct list *address;  #ifdef RTADV    struct rtadvconf rtadv; | 
