Ignore:
Timestamp:
03/22/12 02:00:38 (14 months ago)
Author:
BrainSlayer
Message:

update quagga

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/router/quagga/ospf6d/ospf6_top.c

    r14136 r18797  
    5252struct ospf6 *ospf6; 
    5353 
     54static void ospf6_disable (struct ospf6 *o); 
     55 
    5456static void 
    5557ospf6_top_lsdb_hook_add (struct ospf6_lsa *lsa) 
     
    144146} 
    145147 
    146 #if 0 
    147 static void 
     148void 
    148149ospf6_delete (struct ospf6 *o) 
    149150{ 
     
    151152  struct ospf6_area *oa; 
    152153 
     154  ospf6_disable (ospf6); 
     155 
    153156  for (ALL_LIST_ELEMENTS (o->area_list, node, nnode, oa)) 
    154157    ospf6_area_delete (oa); 
     158  list_delete (o->area_list); 
    155159 
    156160  ospf6_lsdb_delete (o->lsdb); 
     
    165169  XFREE (MTYPE_OSPF6_TOP, o); 
    166170} 
    167 #endif 
    168171 
    169172static void 
     
    592595       OSPF6_STR 
    593596       ROUTE_STR 
    594        "Dispaly Intra-Area routes\n" 
    595        "Dispaly Inter-Area routes\n" 
    596        "Dispaly Type-1 External routes\n" 
    597        "Dispaly Type-2 External routes\n" 
     597       "Display Intra-Area routes\n" 
     598       "Display Inter-Area routes\n" 
     599       "Display Type-1 External routes\n" 
     600       "Display Type-2 External routes\n" 
    598601       ) 
    599602 
     
    605608       OSPF6_STR 
    606609       ROUTE_STR 
    607        "Dispaly Intra-Area routes\n" 
    608        "Dispaly Inter-Area routes\n" 
    609        "Dispaly Type-1 External routes\n" 
    610        "Dispaly Type-2 External routes\n" 
     610       "Display Intra-Area routes\n" 
     611       "Display Inter-Area routes\n" 
     612       "Display Type-1 External routes\n" 
     613       "Display Type-2 External routes\n" 
    611614       "Detailed information\n" 
    612615       ) 
Note: See TracChangeset for help on using the changeset viewer.