source: freewrt/package/quagga/patches/quagga-rip-authmode-fix.patch@ a702415

freewrt_1_0 freewrt_2_0
Last change on this file since a702415 was a702415, checked in by Dirk Nehring <dnehring@…>, 18 years ago

Fixed the problem that the settings cannot be seen on the interfaces. This bug is fixed in the 0.99.9 release.

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@3745 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 847 bytes
  • ripd/rip_interface.c

    diff -urN quagga-0.98.6.orig/ripd/rip_interface.c quagga-0.98.6/ripd/rip_interface.c
    old new  
    20422042          (ri->split_horizon == ri->split_horizon_default) &&
    20432043          (ri->ri_send == RI_RIP_UNSPEC)                   &&
    20442044          (ri->ri_receive == RI_RIP_UNSPEC)                &&
    2045           (ri->auth_type != RIP_AUTH_MD5)                  &&
    2046           (ri->md5_auth_len != RIP_AUTH_MD5_SIZE)          &&
     2045          (ri->auth_type == RIP_AUTH_SIMPLE_PASSWORD)      &&
     2046          (ri->md5_auth_len == RIP_AUTH_MD5_COMPAT_SIZE)   &&
    20472047          (!ri->auth_str)                                  &&
    20482048          (!ri->key_chain)                                 )
    20492049        continue;
Note: See TracBrowser for help on using the repository browser.