=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cdio/cdio.c,v retrieving revision 1.7 retrieving revision 1.8 diff -c -r1.7 -r1.8 *** src/usr.bin/cdio/cdio.c 1997/03/19 03:21:49 1.7 --- src/usr.bin/cdio/cdio.c 1997/05/01 12:40:28 1.8 *************** *** 1,4 **** ! /* $OpenBSD: cdio.c,v 1.7 1997/03/19 03:21:49 angelos Exp $ */ /* * Compact Disc Control Utility by Serge V. Vakulenko . * Based on the non-X based CD player by Jean-Marc Zucconi and --- 1,4 ---- ! /* $OpenBSD: cdio.c,v 1.8 1997/05/01 12:40:28 downsj Exp $ */ /* * Compact Disc Control Utility by Serge V. Vakulenko . * Based on the non-X based CD player by Jean-Marc Zucconi and *************** *** 377,390 **** if (! strncasecmp (arg, "mono", strlen(arg))) return ioctl (fd, CDIOCSETMONO); - #if defined(CDIOCSETSTERIO) if (! strncasecmp (arg, "stereo", strlen(arg))) ! return ioctl (fd, CDIOCSETSTERIO); ! #else ! printf ("%s: Command argument not yet supported\n", ! __progname); ! return (0); ! #endif if (! strncasecmp (arg, "mute", strlen(arg))) return ioctl (fd, CDIOCSETMUTE); --- 377,384 ---- if (! strncasecmp (arg, "mono", strlen(arg))) return ioctl (fd, CDIOCSETMONO); if (! strncasecmp (arg, "stereo", strlen(arg))) ! return ioctl (fd, CDIOCSETSTEREO); if (! strncasecmp (arg, "mute", strlen(arg))) return ioctl (fd, CDIOCSETMUTE);