diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-03-31 22:20:42 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-03-31 22:20:42 +0000 |
commit | 907bec675a640d733f380ade2131ac05cb8eed48 (patch) | |
tree | d8ed805779c713361c437e121a5943e728b97c42 /client.c | |
parent | d13add828ad7737dea34384e7fc0bf116ffff605 (diff) | |
download | rtmux-907bec675a640d733f380ade2131ac05cb8eed48.tar.gz rtmux-907bec675a640d733f380ade2131ac05cb8eed48.tar.bz2 rtmux-907bec675a640d733f380ade2131ac05cb8eed48.zip |
FD_CLOEXEC more fds. Still one I can't find...
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $Id: client.c,v 1.45 2009-03-27 17:04:04 nicm Exp $ */ +/* $Id: client.c,v 1.46 2009-03-31 22:20:42 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -85,9 +85,9 @@ client_init(char *path, struct client_ctx *cctx, int start_server, int flags) server_started: if ((mode = fcntl(cctx->srv_fd, F_GETFL)) == -1) - fatal("fcntl"); + fatal("fcntl failed"); if (fcntl(cctx->srv_fd, F_SETFL, mode|O_NONBLOCK) == -1) - fatal("fcntl"); + fatal("fcntl failed"); cctx->srv_in = buffer_create(BUFSIZ); cctx->srv_out = buffer_create(BUFSIZ); |