Path: utzoo!utgpu!attcan!uunet!husc6!mailrus!ames!elroy!jpl-devvax!lwall From: lwall@jpl-devvax.JPL.NASA.GOV (Larry Wall) Newsgroups: comp.sources.bugs Subject: cdiff 1.1 patch #3 Summary: This is an official patch for cdiff 1.1. Please apply it. Message-ID: <2581@jpl-devvax.JPL.NASA.GOV> Date: 4 Aug 88 23:16:28 GMT Organization: Jet Propulsion Laboratory Lines: 95 System: cdiff version 1.1 Patch #: 3 Priority: MEDIUM Subject: include => From: Samuel Lam Description: The include of stat.h is wrong. Fix: From rn, say "| patch -p -N -d DIR", where DIR is your cdiff source directory. Outside of rn, say "cd DIR; patch -p -N #define PATCHLEVEL 3 Index: cdiff.c Prereq: 1.1.1.2 *** cdiff.c.old Thu Aug 4 16:08:28 1988 --- cdiff.c Thu Aug 4 16:08:30 1988 *************** *** 1,10 **** ! static char rcsid[] = "$Header: cdiff.c,v 1.1.1.2 87/06/04 11:21:43 lwall Exp $"; /* cdiff - turns a regular diff into a new-style context diff * * Usage: cdiff file1 file2 * * $Log: cdiff.c,v $ * Revision 1.1.1.2 87/06/04 11:21:43 lwall * Didn't do diffs with less than 3 lines of leading context. * --- 1,13 ---- ! static char rcsid[] = "$Header: cdiff.c,v 1.1.1.3 88/08/04 16:08:18 lwall Exp $"; /* cdiff - turns a regular diff into a new-style context diff * * Usage: cdiff file1 file2 * * $Log: cdiff.c,v $ + * Revision 1.1.1.3 88/08/04 16:08:18 lwall + * patch3: include => + * * Revision 1.1.1.2 87/06/04 11:21:43 lwall * Didn't do diffs with less than 3 lines of leading context. * *************** *** 19,25 **** #include "patchlevel.h" #include #include ! #include #include char buf[512]; --- 22,28 ---- #include "patchlevel.h" #include #include ! #include #include char buf[512];