Lines Matching defs:spool
145 /** spool temp file name */
160 /** spool temp file */
166 FILE* spool;
174 /* open file and spool to it */
175 spool = fopen(line, "w");
176 if(!spool) fatal_exit("could not open %s: %s", line, strerror(errno));
197 fclose(spool);
200 fputs(line, spool);
205 /** spool autotrust file */
211 FILE* spool;
221 /* open file and spool to it */
222 spool = fopen(line, "w");
223 if(!spool) fatal_exit("could not open %s: %s", line, strerror(errno));
234 fclose(spool);
237 fputs(line, spool);