Searched refs:tokval (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/tnftp/src/ |
H A D | ruserpass.c | 73 static char tokval[100]; variable 129 if (strcasecmp(host, tokval) == 0) in ruserpass() 131 if (strcasecmp(hostname, tokval) == 0) in ruserpass() 135 strncasecmp(hostname, tokval, tmp-hostname) == 0 && in ruserpass() 136 tokval[tmp - hostname] == '\0') in ruserpass() 140 strncasecmp(host, tokval, tmp - host) == 0 && in ruserpass() 141 tokval[tmp - host] == '\0') in ruserpass() 154 *aname = ftp_strdup(tokval); in ruserpass() 156 if (strcmp(*aname, tokval)) in ruserpass() 172 *apass = ftp_strdup(tokval); in ruserpass() [all …]
|
/freebsd/crypto/heimdal/appl/ftp/ftp/ |
H A D | ruserpass.c | 49 static char tokval[100]; variable 143 if (strcasecmp(host, tokval) == 0) in ruserpassword() 145 if (strcasecmp(hostname, tokval) == 0) in ruserpassword() 150 strncasecmp(hostname, tokval, tmp-hostname) == 0 && in ruserpassword() 151 tokval[tmp - hostname] == '\0') in ruserpassword() 156 strncasecmp(host, tokval, tmp - host) == 0 && in ruserpassword() 157 tokval[tmp - host] == '\0') in ruserpassword() 167 *aname = strdup(tokval); in ruserpassword() 169 if (strcmp(*aname, tokval)) in ruserpassword() 183 *apass = strdup(tokval); in ruserpassword() [all …]
|
/freebsd/lib/libcompat/4.3/ |
H A D | rexec.c | 76 static char tokval[100]; variable 106 cp = tokval; in token() 123 if (tokval[0] == 0) in token() 126 if (!strcmp(t->tokstr, tokval)) in token() 171 if (strcasecmp(host, tokval) == 0) in ruserpass() 175 strncasecmp(host, tokval, tmp - host) == 0 && in ruserpass() 176 tokval[tmp - host] == '\0') in ruserpass() 186 *aname = malloc((unsigned) strlen(tokval) + 1); in ruserpass() 187 (void) strcpy(*aname, tokval); in ruserpass() 189 if (strcmp(*aname, tokval)) in ruserpass() [all …]
|