summaryrefslogtreecommitdiffstats
path: root/src/csv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/csv.c')
-rw-r--r--src/csv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/csv.c b/src/csv.c
index bf8e800..fb26f3b 100644
--- a/src/csv.c
+++ b/src/csv.c
@@ -20,9 +20,9 @@ int _write(struct mansession *s, struct message *m) {
sprintf(outstring, "\"%s\"", m->headers[i]);
if (i<m->hdrcount-1)
strcat(outstring, ", ");
- write(s->fd, outstring, strlen(outstring));
+ ast_carefulwrite(s->fd, outstring, strlen(outstring), s->writetimeout);
}
- write(s->fd, "\r\n\r\n", 4);
+ ast_carefulwrite(s->fd, "\r\n\r\n", 4, s->writetimeout);
pthread_mutex_unlock(&s->lock);
return 0;