pkgsrc/sysutils/cdrecord/patches/patch-bb
drochner 4c6407660e update to 1.10
There are MANY bugfixes and cleanups. The changelog file is 22k in size.
2001-08-07 11:23:57 +00:00

19 lines
459 B
Text

$NetBSD: patch-bb,v 1.1 2001/08/07 11:23:57 drochner Exp $
--- mkisofs/mkisofs.c.orig Fri Apr 20 17:45:50 2001
+++ mkisofs/mkisofs.c Mon Aug 6 10:46:21 2001
@@ -2072,11 +2072,11 @@
}
}
/* 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