Guest User

Untitled

a guest
May 24th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. --- if_pppoe.c.orig 2008-10-14 19:06:21.000000000 +0100
  2. +++ if_pppoe.c 2008-10-14 19:06:07.000000000 +0100
  3. @@ -310,12 +310,9 @@
  4.  
  5. LIST_FOREACH(sc, &pppoe_softc_list, sc_list) {
  6. if (sc->sc_state == PPPOE_STATE_SESSION
  7. - && sc->sc_session == session) {
  8. - if (sc->sc_eth_if == rcvif)
  9. - return (sc);
  10. - else
  11. - return (NULL);
  12. - }
  13. + && sc->sc_session == session
  14. + && sc->sc_eth_if == rcvif)
  15. + return (sc);
  16. }
  17. return (NULL);
  18. }
Add Comment
Please, Sign In to add comment