diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 23:35:54 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 23:35:54 +0000 |
commit | 89ca9a777bdc3a3e800b54666e3ef2d2e217a202 (patch) | |
tree | 03bd2d9cdd604f1a735351a55db7c93136ee976a /print/pdq/files/patch-af | |
parent | Remove non staged ports without pending PR from net-p2p, net and news (diff) |
Remove non staged ports without pending PR from p*
Notes
Notes:
svn path=/head/; revision=366968
Diffstat (limited to 'print/pdq/files/patch-af')
-rw-r--r-- | print/pdq/files/patch-af | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/print/pdq/files/patch-af b/print/pdq/files/patch-af deleted file mode 100644 index 44a40699b435..000000000000 --- a/print/pdq/files/patch-af +++ /dev/null @@ -1,33 +0,0 @@ ---- src/xpdq_printer.c.orig Sat Apr 1 05:36:30 2000 -+++ src/xpdq_printer.c Fri Aug 11 22:36:57 2000 -@@ -33,19 +33,24 @@ - - pwizard_state *wizard; - dl_list *list; -+ char *error; - - list = first_list_element (rc->driver_list); - if (list == NULL) { -- xpdq_error ("There are no printer drivers defined in\n" -- "/etc/printrc or ~/.printrc. Without printer drivers,\n" -- "the wizard cannot add printers."); -+ error = malloc(256); -+ sprintf (error, "There are no printer drivers defined in\n" -+ "%s or ~/.printrc. Without printer drivers,\n" -+ "the wizard cannot add printers.", PRINTRC_FILE); -+ xpdq_error(error); - return; - } - list = first_list_element (rc->interface_list); - if (list == NULL) { -- xpdq_error ("There are no printer interfaces defined in\n" -- "/etc/printrc or ~/.printrc. Without printer interfaces,\n" -- "the wizard cannot add printers."); -+ error = malloc(256); -+ sprintf (error, "There are no printer drivers defined in\n" -+ "%s or ~/.printrc. Without printer drivers,\n" -+ "the wizard cannot add printers.", PRINTRC_FILE); -+ xpdq_error(error); - return; - } - wizard = new_pwizard (); |