if(!check->sessionid)
/* not session ID means blank entry */
continue;
- if(strequal(conn->name, check->name) &&
+ if(curl_strequal(conn->name, check->name) &&
(conn->remote_port == check->remote_port) ) {
/* yes, we have a session ID! */
data->state.sessionage++; /* increase general age */
!strlen(hostname)) /* sanity check */
return 0;
- if(strequal(certname, hostname)) /* trivial case */
+ if(curl_strequal(certname, hostname)) /* trivial case */
return 1;
certdomain = certname + 1;
if(tmp) {
/* ok the certname's domain matches the hostname, let's check that it's a
tail-match */
- if(strequal(tmp, certdomain))
+ if(curl_strequal(tmp, certdomain))
/* looks like a match. Just check we havent swallowed a '.' */
return tmp == strchr(hostname, '.');
else
option_keyword, option_arg) == 2) {
/* Terminal type */
- if(strequal(option_keyword, "TTYPE")) {
+ if(curl_strequal(option_keyword, "TTYPE")) {
strncpy(tn->subopt_ttype, option_arg, 31);
tn->subopt_ttype[31] = 0; /* String termination */
tn->us_preferred[TELOPT_TTYPE] = YES;
}
/* Display variable */
- if(strequal(option_keyword, "XDISPLOC")) {
+ if(curl_strequal(option_keyword, "XDISPLOC")) {
strncpy(tn->subopt_xdisploc, option_arg, 127);
tn->subopt_xdisploc[127] = 0; /* String termination */
tn->us_preferred[TELOPT_XDISPLOC] = YES;
}
/* Environment variable */
- if(strequal(option_keyword, "NEW_ENV")) {
+ if(curl_strequal(option_keyword, "NEW_ENV")) {
buf = strdup(option_arg);
if(!buf)
return CURLE_OUT_OF_MEMORY;
int fnam=strlen(word);
int numhits=0;
for(j=0; j< sizeof(aliases)/sizeof(aliases[0]); j++) {
- if(strnequal(aliases[j].lname, word, fnam)) {
+ if(curl_strnequal(aliases[j].lname, word, fnam)) {
longopt = TRUE;
numhits++;
- if(strequal(aliases[j].lname, word)) {
+ if(curl_strequal(aliases[j].lname, word)) {
parse = aliases[j].letter;
hit = j;
numhits = 1; /* a single unique hit */
break;
case 'C':
/* This makes us continue an ftp transfer at given position */
- if(!strequal(nextarg, "-")) {
+ if(!curl_strequal(nextarg, "-")) {
config->resume_from= atoi(nextarg);
config->resume_from_current = FALSE;
}
nextarg++; /* pass the @ */
- if(strequal("-", nextarg))
+ if(curl_strequal("-", nextarg))
file = stdin;
else
file = fopen(nextarg, "rb");
case 'T':
/* we are uploading */
config->conf |= CONF_UPLOAD;
- if(!strequal("-", nextarg))
+ if(!curl_strequal("-", nextarg))
/* make - equal stdin */
GetStr(&config->infile, nextarg);
break;
or - (stdin) follows */
FILE *file;
nextarg++; /* pass the @ */
- if(strequal("-", nextarg))
+ if(curl_strequal("-", nextarg))
file = stdin;
else
file = fopen(nextarg, "r");
if(!config->trace_stream) {
/* open for append */
- if(strequal("-", config->trace_dump))
+ if(curl_strequal("-", config->trace_dump))
config->trace_stream = stdout;
else {
config->trace_stream = fopen(config->trace_dump, "w");
config->create_dirs=FALSE;
if(argc>1 &&
- (!strnequal("--", argv[1], 2) && (argv[1][0] == '-')) &&
+ (!curl_strnequal("--", argv[1], 2) && (argv[1][0] == '-')) &&
strchr(argv[1], 'q')) {
/*
* The first flag, that is not a verbose name, but a shortname
char *flag = argv[i];
- if(strequal("--", argv[i]))
+ if(curl_strequal("--", argv[i]))
/* this indicates the end of the flags and thus enables the
following (URL) argument to start with -. */
stillflags=FALSE;
/* save outfile pattern before expansion */
outfiles = urlnode->outfile?strdup(urlnode->outfile):NULL;
- if ((!outfiles || strequal(outfiles, "-")) && urlnum > 1) {
+ if ((!outfiles || curl_strequal(outfiles, "-")) && urlnum > 1) {
/* multiple files extracted to stdout, insert separators! */
separator = 1;
}
outfile = outfiles?strdup(outfiles):NULL;
if((urlnode->flags&GETOUT_USEREMOTE) ||
- (outfile && !strequal("-", outfile)) ) {
+ (outfile && !curl_strequal("-", outfile)) ) {
/*
* We have specified a file name to store the result in, or we have
fprintf(config->errors, "curl: (%d) %s\n", res, errorbuffer);
#endif
- if (outfile && !strequal(outfile, "-") && outs.stream)
+ if (outfile && !curl_strequal(outfile, "-") && outs.stream)
fclose(outs.stream);
#ifdef HAVE_UTIME