| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/print/foomatic-filters/files/ |
Upload File : |
--- foomaticrip.c.orig 2012-07-02 14:50:46 UTC
+++ foomaticrip.c
@@ -109,7 +109,7 @@ jobparams_t * get_current_job()
}
-dstr_t *postpipe; /* command into which the output of this filter should be piped */
+dstr_t *postpipe = NULL; /* command into which the output of this filter should be piped */
FILE *postpipe_fh = NULL;
FILE * open_postpipe()
@@ -180,7 +180,7 @@ char cupsfilterpath[PATH_MAX] = "/usr/local/lib/cups/f
"/opt/cups/filter:"
"/usr/lib/cups/filter";
-char modern_shell[64] = "/bin/bash";
+char modern_shell[64] = "/bin/sh";
void config_set_option(const char *key, const char *value)
{
@@ -1061,7 +1061,7 @@ int print_file(const char *filename, int convert)
Ghostscript is not available. */
if (spooler == SPOOLER_CUPS)
snprintf(pdf2ps_cmd, PATH_MAX,
- "pdftops '%s' '%s' '%s' '%s' '%s' '%s'",
+ "/usr/local/libexec/cups/filter/pdftops '%s' '%s' '%s' '%s' '%s' '%s'",
job->id, job->user, job->title, "1", job->optstr->data,
filename);
else
@@ -1197,7 +1197,8 @@ int main(int argc, char** argv)
debug = 1;
if (debug) {
- int fd = mkstemp (LOG_FILE "-XXXXXX.log");
+ sprintf(tmp, "%s-XXXXXX.log", LOG_FILE);
+ int fd = mkstemps (tmp, 4);
if (fd != -1)
logh = fdopen(fd, "w");
else