You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-print/cups-filters/files/cups-filters-1.0.53-uclibc....

17 lines
445 B

--- cups-filters-1.0.53/filter/foomatic-rip/foomaticrip.c
+++ cups-filters-1.0.53-uclibc/filter/foomatic-rip/foomaticrip.c
@@ -736,8 +736,13 @@ int main(int argc, char** argv)
debug = 1;
if (debug) {
+#ifdef __UCLIBC__
+ sprintf(tmp, "%s-log-XXXXXX", LOG_FILE);
+ int fd = mkstemp (tmp);
+#else
sprintf(tmp, "%s-XXXXXX.log", LOG_FILE);
int fd = mkstemps (tmp, 4);
+#endif
if (fd != -1)
logh = fdopen(fd, "w");
else