Xref: utzoo comp.windows.x:24170 comp.sources.wanted:12404 Path: utzoo!utgpu!news-server.csri.toronto.edu!rutgers!rochester!pt.cs.cmu.edu!andrew.cmu.edu!dl2n+ From: dl2n+@andrew.cmu.edu (Daniel Edward Lovinger) Newsgroups: comp.windows.x,comp.sources.wanted Subject: Fast patch for 6.0b Message-ID: Date: 9 Jul 90 21:22:38 GMT Organization: Physics, Carnegie Mellon, Pittsburgh, PA Lines: 33 One of these days, I will refrain from making a quickie fix before releasing code, but here is a patch to fix a stooopid mistake in the 6.0b code. Please apply this. I will be updating the archives on expo as soon as they come back up on the network (ftp is failing at the moment). The 'bad' archives are dated *prior* to 5:00pm 7/9/90. If you have gotten those, apply this patch. If the archives you retrieve are dated sometime later, this is unnecesary. Sorry about the confusion ... dan ---------------- *** resource.c~ Mon Jul 9 17:04:19 1990 --- resource.c Mon Jul 9 16:59:55 1990 *************** *** 53,59 **** int i; /* Index into font path list */ struct stat statbuf; ! if (!stat(path, &statbuf)) { fprintf(stderr, "Cannot stat(2) %s for player on %s.\nXtrek font may not load properly.\n", element, p->p_monitor); return; } --- 53,59 ---- int i; /* Index into font path list */ struct stat statbuf; ! if (stat(element, &statbuf)) { fprintf(stderr, "Cannot stat(2) %s for player on %s.\nXtrek font may not load properly.\n", element, p->p_monitor); return;