diff options
author | des <des@FreeBSD.org> | 2002-12-03 15:41:30 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2002-12-03 15:41:30 +0000 |
commit | 372cfdca8c712528f4735bb4adff06c105ad260b (patch) | |
tree | 0fa08c3bc62cbb88a8e6594adb379c4d22ceddc9 /usr.sbin/cdcontrol | |
parent | 641c5e9ff3d17c5166746aacccce8ce7ab7c795b (diff) | |
download | FreeBSD-src-372cfdca8c712528f4735bb4adff06c105ad260b.zip FreeBSD-src-372cfdca8c712528f4735bb4adff06c105ad260b.tar.gz |
The default CD drive is /dev/cd0, not /dev/cd0c.
Reviewed by: jhb
Approved by: re (rwatson)
Diffstat (limited to 'usr.sbin/cdcontrol')
-rw-r--r-- | usr.sbin/cdcontrol/cdcontrol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/cdcontrol/cdcontrol.c b/usr.sbin/cdcontrol/cdcontrol.c index 5dd0585..35ea358 100644 --- a/usr.sbin/cdcontrol/cdcontrol.c +++ b/usr.sbin/cdcontrol/cdcontrol.c @@ -51,7 +51,7 @@ static const char rcsid[] = #define ASTS_VOID 0x15 /* No current audio status to return */ #ifndef DEFAULT_CD_DRIVE -# define DEFAULT_CD_DRIVE "/dev/cd0c" +# define DEFAULT_CD_DRIVE "/dev/cd0" #endif #ifndef DEFAULT_CD_PARTITION |