diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:02 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-25 19:29:02 +0000 |
commit | e57cbe87a9b8c8197c51ff12101726ed6924dfdf (patch) | |
tree | 570bccd8ce85b1fbef168cb5ac60bcffaef03a59 /fstobdf.c | |
parent | 6f1b843c87395c617f48793607797face574a188 (diff) |
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksxf86-4_3_99_903_specialxf86-4_3_99_902xf86-4_3_99_901xf86-4_3_99_16xf86-012804-2330
Diffstat (limited to 'fstobdf.c')
-rw-r--r-- | fstobdf.c | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -43,7 +43,7 @@ in this Software without prior written authorization from The Open Group. * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF * THIS SOFTWARE. */ -/* $XFree86: xc/programs/fstobdf/fstobdf.c,v 1.6 2001/12/14 20:00:46 dawes Exp $ */ +/* $XFree86: xc/programs/fstobdf/fstobdf.c,v 1.7 2003/07/09 15:27:36 tsi Exp $ */ #include <stdio.h> #include <stdlib.h> @@ -104,8 +104,13 @@ main(int argc, char *argv[]) fontServer = FSOpenServer(serverName); if (!fontServer) { - fprintf(stderr, "can't open font server \"%s\"\n", - FSServerName(serverName)); + char *sn = FSServerName(serverName); + if (sn) + fprintf(stderr, "%s: can't open font server \"%s\"\n", + argv[0], sn); + else + fprintf(stderr, "%s: No font server specified.\n", + argv[0]); exit(0); } bitmapFormat = 0; |