Lines Matching refs:syst
212 if (ftp->syst) { in ftp_gc()
213 efree(ftp->syst); in ftp_gc()
214 ftp->syst = NULL; in ftp_gc()
385 char *syst, *end; in ftp_syst() local
392 if (ftp->syst) { in ftp_syst()
393 return ftp->syst; in ftp_syst()
401 syst = ftp->inbuf; in ftp_syst()
402 while (*syst == ' ') { in ftp_syst()
403 syst++; in ftp_syst()
405 if ((end = strchr(syst, ' '))) { in ftp_syst()
408 ftp->syst = estrdup(syst); in ftp_syst()
412 return ftp->syst; in ftp_syst()