X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=st.c;h=19d0a86887f6dc647bbf120a05466f04d2c988ec;hb=720cb816dcff55f8b75bdc2a8ffa265f460f5d55;hp=8741145a5a6d42cb63799c8c661c91b2ab2e989d;hpb=b9d5fec4f277b688b3bb4741134abf152e801e90;p=st.git diff --git a/st.c b/st.c index 8741145..19d0a86 100644 --- a/st.c +++ b/st.c @@ -355,7 +355,7 @@ static STREscape strescseq; static int cmdfd; static pid_t pid; static Selection sel; -static FILE *fileio; +static int iofd = -1; static char **opt_cmd = NULL; static char *opt_io = NULL; static char *opt_title = NULL; @@ -821,9 +821,9 @@ ttynew(void) { signal(SIGCHLD, sigchld); if(opt_io) { if(!strcmp(opt_io, "-")) { - fileio = stdout; + iofd = STDOUT_FILENO; } else { - if(!(fileio = fopen(opt_io, "w"))) { + if((iofd = open(opt_io, O_WRONLY | O_CREAT, 0666)) < 0) { fprintf(stderr, "Error opening %s:%s\n", opt_io, strerror(errno)); } @@ -1599,10 +1599,8 @@ void tputc(char *c) { char ascii = *c; - if(fileio) { - putc(ascii, fileio); - fflush(fileio); - } + if(iofd != -1) + write(iofd, c, 1); if(term.esc & ESC_START) { if(term.esc & ESC_CSI) {