isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit c6ddad6ac4fd5bfced98434df4bd50802426daa2
parent d7d5fd20bc81db0aff711a540a2186a4f93b21e8
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Sat, 12 Apr 2014 18:28:21 +0200

remove pointless/counterproductive "Disk full?" error message suffixes

the affected functions will set errno to ENOSPC when necessary.

Diffstat:
Msrc/sync.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/sync.c b/src/sync.c @@ -49,7 +49,7 @@ void Fclose( FILE *f, int safe ) { if ((safe && (fflush( f ) || (UseFSync && fdatasync( fileno( f ) )))) || fclose( f ) == EOF) { - sys_error( "Error: cannot close file. Disk full?" ); + sys_error( "Error: cannot close file" ); exit( 1 ); } } @@ -64,7 +64,7 @@ Fprintf( FILE *f, const char *msg, ... ) r = vfprintf( f, msg, va ); va_end( va ); if (r < 0) { - sys_error( "Error: cannot write file. Disk full?" ); + sys_error( "Error: cannot write file" ); exit( 1 ); } }