opnsense-ports/print/cups-fxlinuxprint/files/patch-fxlinuxprint.c
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

20 lines
696 B
C

--- fxlinuxprint.c.orig 2006-03-06 15:19:54.000000000 +0900
+++ fxlinuxprint.c 2014-05-09 10:28:36.000000000 +0900
@@ -24,7 +24,7 @@
#include <fcntl.h>
#define __USE_XOPEN_EXTENDED
#include <signal.h>
-#include <wait.h>
+#include <sys/wait.h>
#include <unistd.h>
#include <cups/cups.h>
#include <cups/ppd.h>
@@ -517,7 +517,7 @@
if (opt->job_type == JOB_SECURITY) {
strcat (pjl, PJLSetHoldType);
if (opt->hold_key[0] != 0x00) {
- if (Decode (opt->hold_key, decode_buff, &decode_len)) {
+ if (Decode ((unsigned char *)opt->hold_key, (unsigned char *)decode_buff, &decode_len)) {
decode_buff[decode_len] = 0;
} else {
strcpy (decode_buff, opt->hold_key);