Home | History | Annotate | Download | only in ssh

Lines Matching defs:cfp

101 	FILE *cfp;		/* command file ptr */
135 if ((cfp = fopen(cf_name, "r")) != NULL) {
136 error = runfile(cfp);
137 fclose(cfp);
152 cfp = fopen(cf_name, "r");
153 if (cfp == NULL) {
157 error = runfile(cfp);
158 fclose(cfp);
199 runfile(FILE *cfp)
214 if ((fgets(ibuf, sizeof(ibuf), cfp)) == NULL)