summaryrefslogtreecommitdiffstats
path: root/proto/ospf/config.Y
diff options
context:
space:
mode:
authorOndrej Filip <feela@network.cz>2004-07-13 15:52:54 +0200
committerOndrej Filip <feela@network.cz>2004-07-13 15:52:54 +0200
commit32d3228d864cb6af8c679a7742f4b0a71c2facc0 (patch)
tree45e26bf02ae4223a3dc7d2bc7ea46d18a9cbe0ca /proto/ospf/config.Y
parent12dd8dc8779c13889a6860b769df7e0d68e7764c (diff)
downloadbird-32d3228d864cb6af8c679a7742f4b0a71c2facc0.tar
bird-32d3228d864cb6af8c679a7742f4b0a71c2facc0.zip
Bugfix in simple authentification.
Diffstat (limited to 'proto/ospf/config.Y')
-rw-r--r--proto/ospf/config.Y3
1 files changed, 2 insertions, 1 deletions
diff --git a/proto/ospf/config.Y b/proto/ospf/config.Y
index c595175..87a97bc 100644
--- a/proto/ospf/config.Y
+++ b/proto/ospf/config.Y
@@ -1,7 +1,7 @@
/*
* BIRD -- OSPF Configuration
*
- * (c) 1999 - 2000 Ondrej Filip <feela@network.cz>
+ * (c) 1999--2004 Ondrej Filip <feela@network.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
@@ -98,6 +98,7 @@ ospf_vlink_item:
| DEAD COUNT expr { OSPF_PATT->deadc = $3 ; if ($3<=1) cf_error("Dead count must be greater than one"); }
| 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; }
;