Lines Matching refs:syst
211 if (ftp->syst) { in ftp_gc()
212 efree(ftp->syst); in ftp_gc()
213 ftp->syst = NULL; in ftp_gc()
420 char *syst, *end; in ftp_syst() local
427 if (ftp->syst) { in ftp_syst()
428 return ftp->syst; in ftp_syst()
436 syst = ftp->inbuf; in ftp_syst()
437 while (*syst == ' ') { in ftp_syst()
438 syst++; in ftp_syst()
440 if ((end = strchr(syst, ' '))) { in ftp_syst()
443 ftp->syst = estrdup(syst); in ftp_syst()
447 return ftp->syst; in ftp_syst()