diff options
author | Ondrej Filip <feela@network.cz> | 2005-02-14 11:54:16 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2005-02-14 11:54:16 +0000 |
commit | b181f444a6538b03a02296f02928e3c131b251a6 (patch) | |
tree | 31086fa3f7d91ae64522a136da7d02cd821c1488 /proto/ospf/config.Y | |
parent | 75c1c585197f2b4a1b0295d36fe16a4869c21914 (diff) |
Small changes to reduce number of warnings.
Diffstat (limited to 'proto/ospf/config.Y')
-rw-r--r-- | proto/ospf/config.Y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/ospf/config.Y b/proto/ospf/config.Y index 91cd5b85..5f9f12ce 100644 --- a/proto/ospf/config.Y +++ b/proto/ospf/config.Y @@ -100,7 +100,7 @@ ospf_vlink_item: | AUTHENTICATION NONE { OSPF_PATT->autype = OSPF_AUTH_NONE ; } | AUTHENTICATION SIMPLE { OSPF_PATT->autype = OSPF_AUTH_SIMPLE ; } | AUTHENTICATION CRYPTOGRAPHIC { OSPF_PATT->autype = OSPF_AUTH_CRYPT ; } - | password_list {OSPF_PATT->passwords = $1; } + | password_list {OSPF_PATT->passwords = (list *) $1; } ; ospf_vlink_start: VIRTUAL LINK idval @@ -139,7 +139,7 @@ ospf_iface_item: | AUTHENTICATION NONE { OSPF_PATT->autype = OSPF_AUTH_NONE ; } | AUTHENTICATION SIMPLE { OSPF_PATT->autype = OSPF_AUTH_SIMPLE ; } | AUTHENTICATION CRYPTOGRAPHIC { OSPF_PATT->autype = OSPF_AUTH_CRYPT ; } - | password_list {OSPF_PATT->passwords = $1; } + | password_list {OSPF_PATT->passwords = (list *) $1; } ; pref_list: |