mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
7a8709c112
- Fix crash on exit when permissions on configuration file were changed PR: ports/67126 Submitted by: Samy Al Bahra <samy@kerneled.org> (maintainer)
11 lines
288 B
C
11 lines
288 B
C
--- src/conf.c Tue Aug 26 07:54:35 2003
|
|
+++ src/conf.c.patch Mon May 24 16:57:43 2004
|
|
@@ -798,6 +798,7 @@
|
|
if (!fp)
|
|
{
|
|
g_warning ("Can't open the printing configuration file.");
|
|
+ return;
|
|
}
|
|
|
|
fprintf (fp, "font_family = %s\n", encode_font (PConf->font_family));
|