CVSROOT: /cvs Module name: src Changes by: matt...@cvs.openbsd.org 2011/06/03 12:22:25
Modified files: sys/dev/isa : mcd.c Log message: Fix two compile errors in mcd(4) due to bitrot: 1. Need to include <sys/dkio.h> since <sys/ioctl.h> no longer includes it. 2. readdisklabel() returns an int, not an error string, so update mcdgetdisklabel() accordingly. The return value is just ignored currently, but that's no worse than cdgetdisklabel() in cd(4)... Apparently no one has needed mcd(4) in the last two years.