Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 263146
Collapse All | Expand All

(-)hydra-5.4-src-orig/hydra-gtk/src/callbacks.c (-1 / +1 lines)
Lines 663-669 Link Here
663
		
663
		
664
		text = gtk_text_buffer_get_text(outputbuf, &start, &end, TRUE);
664
		text = gtk_text_buffer_get_text(outputbuf, &start, &end, TRUE);
665
665
666
		fd = open(filename, O_CREAT | O_TRUNC | O_WRONLY);
666
		fd = open(filename, O_CREAT | O_TRUNC | O_WRONLY, S_IRUSR | S_IWUSR);
667
		if ( fd > 0 ) {
667
		if ( fd > 0 ) {
668
			write(fd, text, strlen(text));
668
			write(fd, text, strlen(text));
669
			close(fd);
669
			close(fd);

Return to bug 263146