[Linux-decnet-commit] CVS: dnprogs/dncopy unixfile.cc,1.8,1.9
Brought to you by:
chrissie_c,
ph3-der-loewe
|
From: ph3-der-loewe <ph3...@us...> - 2010-07-06 13:11:04
|
Update of /cvsroot/linux-decnet/dnprogs/dncopy In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv27926/dncopy Modified Files: unixfile.cc Log Message: the strange fix nobody knows why it is needed is needed on FreeBSD, too Index: unixfile.cc =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dncopy/unixfile.cc,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** unixfile.cc 3 Oct 2009 13:22:03 -0000 1.8 --- unixfile.cc 6 Jul 2010 13:10:55 -0000 1.9 *************** *** 142,146 **** { // Don't know why this is necessary ! #ifdef __NetBSD__ return feof(stream); #else --- 142,146 ---- { // Don't know why this is necessary ! #if defined(__NetBSD__) || defined(__FreeBSD__) return feof(stream); #else |