Lines Matching refs:rmtabf
59 static FILE *rmtabf = NULL;
324 if (rmtabf)
325 (void) fclose(rmtabf);
328 if ((rmtabf = fopen(RMTAB, "w+")) != NULL) {
332 (void) fchmod(fileno(rmtabf),
488 if (rmtabf == NULL || fseek(rmtabf, 0L, 2) == -1) {
491 pos = ftell(rmtabf);
498 if (fprintf(rmtabf, "[%s]:%s\n", host, path) == EOF) {
502 if (fprintf(rmtabf, "%s:%s\n", host, path) == EOF) {
506 if (fflush(rmtabf) == EOF) {
520 if (rmtabf != NULL && pos != -1 && fseek(rmtabf, pos, 0) == 0) {
521 (void) fprintf(rmtabf, "#");
522 (void) fflush(rmtabf);