[1268] in NetBSD-Development
repl
daemon@ATHENA.MIT.EDU (Brett David Rosen)
Thu Feb 29 00:17:24 1996
From: Brett David Rosen <bdrosen@MIT.EDU>
To: netbsd-dev@MIT.EDU
Date: Thu, 29 Feb 1996 00:16:55 EST
using repl -filter filterfile to insert the original message
did not work. I made a change in src/mh/uip/replsbr.c
from
#ifdef _FSTDIO
/* <sigh> the code assumed that rewind does this. */
lseek (fileno(stdin), 0, SEEK_SET);
#endif
to
#ifdef _FSTDIO
/* <sigh> the code assumed that rewind does this. */
fseek (stdin, 0L, SEEK_SET);
#endif
and rebuilt the package. This fixed the problem. (after building
it and verifying it I reverted the change and built again. this
binary did not work properly)
Can someone look into this and hopefully install a fixed binary into
/srvd/patch ?
thanks
Brett