Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--shell/ev-utils.c2
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 927bd0f..09fe6a5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-07-10 Ghee Teo <ghee.teo@sun.com>
+
+ * shell/ev-utils.c: (using_postscript_printer):
+
+ Fixes crash when print using PAPI backend,
+ bug #345012.
+
2006-06-09 Pat Rondon <pmr@patrondon.org>
* shell/ev-jobs.c: (ev_job_xfer_run):
diff --git a/shell/ev-utils.c b/shell/ev-utils.c
index b35b77b..ba560d5 100644
--- a/shell/ev-utils.c
+++ b/shell/ev-utils.c
@@ -251,6 +251,8 @@ using_postscript_printer (GnomePrintConfig *config)
return TRUE;
else if (!strcmp ((const gchar *)transport, "LPD"))
return TRUE;
+ else if (!strcmp ((const gchar *)transport, "PAPI"))
+ return TRUE;
}
return FALSE;