aboutsummaryrefslogtreecommitdiffhomepage
path: root/fishd.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2009-02-23 06:28:52 +1000
committerGravatar axel <axel@liljencrantz.se>2009-02-23 06:28:52 +1000
commit14c84ffbcbbe0368e61b7bc59d44a1d7bc906d33 (patch)
treea0fbafe2d63e86d5adcd615a7bc70fade00f0803 /fishd.c
parentf71c6f3f0e34c034c3dec54289527a68a136749f (diff)
Check return value of a few write calls and retry on EINTR, and fix a few other warnings, mostly by printing error messages before giving up.
darcs-hash:20090222202852-ac50b-b0e79142af5b7a99e55271d4001fa252d9684a1d.gz
Diffstat (limited to 'fishd.c')
-rw-r--r--fishd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fishd.c b/fishd.c
index 0437c09e..cb018d7e 100644
--- a/fishd.c
+++ b/fishd.c
@@ -521,7 +521,7 @@ static void load_or_save( int save)
if( save )
{
- write( c.fd, SAVE_MSG, strlen(SAVE_MSG) );
+ write_loop( c.fd, SAVE_MSG, strlen(SAVE_MSG) );
enqueue_all( &c );
}
else