diff options
author | Neil Brown <neilb@suse.de> | 2007-01-11 12:45:48 +1100 |
---|---|---|
committer | Neil Brown <neilb@suse.de> | 2007-01-11 12:45:48 +1100 |
commit | 8fd9fad1ea4b25b8962d70133f476650ef0637b0 (patch) | |
tree | ebc6a359e751f4dcc7167ed1cbe83c86d3a9e0c2 /support/nfs/cacheio.c | |
parent | 95b414a6038d1d4efb1b1ec90c2da17def7064b2 (diff) | |
download | nfs-utils-8fd9fad1ea4b25b8962d70133f476650ef0637b0.tar.gz nfs-utils-8fd9fad1ea4b25b8962d70133f476650ef0637b0.tar.xz nfs-utils-8fd9fad1ea4b25b8962d70133f476650ef0637b0.zip |
Error check messages sent to the kernel.
And make sure that if we fail to export a filesystem in mountd,
then we don't try to get a filehandle on it, or a deadlock
might occur.
Diffstat (limited to 'support/nfs/cacheio.c')
-rw-r--r-- | support/nfs/cacheio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/nfs/cacheio.c b/support/nfs/cacheio.c index 3e868d8..36473cf 100644 --- a/support/nfs/cacheio.c +++ b/support/nfs/cacheio.c @@ -109,10 +109,10 @@ void qword_printint(FILE *f, int num) fprintf(f, "%d ", num); } -void qword_eol(FILE *f) +int qword_eol(FILE *f) { fprintf(f,"\n"); - fflush(f); + return fflush(f); } |