Too many changes to list them all here; see following for full details: ftp://ftp.berlios.de/pub/cdrecord/AN-2.0 cdrecord: -overburn option Driveropts "burnproof" renamed to "burnfree" CD-Text support. cdda2wav: Added -L to query freedb.freedb.org for CDDB information. mkisofs: Fix -graft-points. Various fixes to HFS support. libedc: Performance enhancements. libscg: Various improvements to SCSI & ATAPI transports.
19 lines
437 B
Text
19 lines
437 B
Text
$NetBSD: patch-ba,v 1.2 2003/01/03 16:27:10 lukem Exp $
|
|
|
|
--- readcd/readcd.c.orig Fri Sep 20 09:00:12 2002
|
|
+++ readcd/readcd.c
|
|
@@ -341,11 +341,11 @@ main(ac, av)
|
|
/*
|
|
* We don't need root privilleges anymore.
|
|
*/
|
|
-#ifdef HAVE_SETREUID
|
|
- if (setreuid(-1, getuid()) < 0)
|
|
-#else
|
|
#ifdef HAVE_SETEUID
|
|
if (seteuid(getuid()) < 0)
|
|
+#else
|
|
+#ifdef HAVE_SETREUID
|
|
+ if (setreuid(-1, getuid()) < 0)
|
|
#else
|
|
if (setuid(getuid()) < 0)
|
|
#endif
|