Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorGhee Teo <ghee.teo@sun.com>2006-07-10 19:33:02 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2006-07-10 19:33:02 (GMT)
commitd626744c21e61733228f6dfc6b29dec1f38a92e4 (patch)
tree60ce9ee9077357893976787f3a638a3d2ccffee9 /shell
parent537f7e2880d5c7a055328b83d3cc2173f974dab5 (diff)
Fixes crash when print using PAPI backend, bug #345012.
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.
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-utils.c2
1 files changed, 2 insertions, 0 deletions
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;