Diff for /embedaddon/mpd/src/input.c between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2013/07/22 08:44:29 version 1.1.1.2, 2021/03/17 00:39:23
Line 232  InputMPLink(Bund b, int proto, Mbuf pkt) Line 232  InputMPLink(Bund b, int proto, Mbuf pkt)
         case PROTO_LCP:          case PROTO_LCP:
             if (MBLEN(pkt) < sizeof(hdr))              if (MBLEN(pkt) < sizeof(hdr))
                 break;                  break;
            hdr = (struct fsmheader *)MBDATA(pkt);            hdr = (struct fsmheader *)(void *)MBDATA(pkt);
             switch (hdr->code) {              switch (hdr->code) {
                 case CODE_CODEREJ:              /* these two are OK */                  case CODE_CODEREJ:              /* these two are OK */
                 case CODE_PROTOREJ:                  case CODE_PROTOREJ:

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>