Changeset d5423d83 in rtems


Ignore:
Timestamp:
08/22/06 02:11:32 (17 years ago)
Author:
Till Straumann <strauman@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
655c8bf2
Parents:
a2d7c41
Message:
  • libnetworking/net/if_ethersubr.c: (ether_ioctl) Return error for unknown/unsupported ioctl command. (Change merged from freeBSD).
Location:
cpukit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/ChangeLog

    ra2d7c41 rd5423d83  
     12006-08-21      Till Straumann <strauman@slac.stanford.edu>
     2
     3        * libnetworking/net/if_ethersubr.c: (ether_ioctl)
     4        Return error for unknown/unsupported ioctl command.
     5        (Change merged from freeBSD).
     6
    172006-08-15      Joel Sherrill <joel@OARcorp.com>
    28
  • cpukit/libnetworking/net/if_ethersubr.c

    ra2d7c41 rd5423d83  
    895895                }
    896896                break;
     897        default:
     898                error = EINVAL;                 /* XXX netbsd has ENOTTY??? */
     899                break;
    897900        }
    898901        return (error);
Note: See TracChangeset for help on using the changeset viewer.