| 664 |
text = gtk_text_buffer_get_text(outputbuf, &start, &end, TRUE); |
664 |
text = gtk_text_buffer_get_text(outputbuf, &start, &end, TRUE); |
| 666 |
fd = open(filename, O_CREAT | O_TRUNC | O_WRONLY); |
666 |
fd = open(filename, O_CREAT | O_TRUNC | O_WRONLY, S_IRUSR | S_IWUSR); |
| 668 |
write(fd, text, strlen(text)); |
668 |
write(fd, text, strlen(text)); |