This diff file is needed to run AX.25 with 1.1.12 and higher due to the changes in the SLIP driver to accomodate type reporting --- ax25.c~ Tue May 10 13:52:05 1994 +++ ax25.c Tue May 10 13:52:05 1994 @@ -338,7 +338,7 @@ for(dev=dev_base;dev;dev=dev->next) { - if((dev->flags & IFF_UP) && dev->hard_header_len==17 && dev->type == 3) /* Active kiss ax25 mode */ + if((dev->flags & IFF_UP) && dev->hard_header_len==17 && (dev->type ==3 || dev->type ==260)) /* Active kiss ax25 mode */ { if(ax25cmp(addr,(ax25_address *)dev->dev_addr)==0) return(dev);