Use strpfx() helper where appropriate
This commit is contained in:
@@ -559,9 +559,9 @@ static auth_cfg_t *build_auth_cfg(private_stroke_config_t *this,
|
||||
}
|
||||
|
||||
/* authentication metod (class, actually) */
|
||||
if (strneq(auth, "pubkey", strlen("pubkey")) ||
|
||||
strneq(auth, "rsa", strlen("rsa")) ||
|
||||
strneq(auth, "ecdsa", strlen("ecdsa")))
|
||||
if (strpfx(auth, "pubkey") ||
|
||||
strpfx(auth, "rsa") ||
|
||||
strpfx(auth, "ecdsa"))
|
||||
{
|
||||
cfg->add(cfg, AUTH_RULE_AUTH_CLASS, AUTH_CLASS_PUBKEY);
|
||||
build_crl_policy(cfg, local, msg->add_conn.crl_policy);
|
||||
@@ -572,7 +572,7 @@ static auth_cfg_t *build_auth_cfg(private_stroke_config_t *this,
|
||||
{
|
||||
cfg->add(cfg, AUTH_RULE_AUTH_CLASS, AUTH_CLASS_PSK);
|
||||
}
|
||||
else if (strneq(auth, "xauth", 5))
|
||||
else if (strpfx(auth, "xauth"))
|
||||
{
|
||||
char *pos;
|
||||
|
||||
@@ -588,7 +588,7 @@ static auth_cfg_t *build_auth_cfg(private_stroke_config_t *this,
|
||||
identification_create_from_string(msg->add_conn.xauth_identity));
|
||||
}
|
||||
}
|
||||
else if (strneq(auth, "eap", 3))
|
||||
else if (strpfx(auth, "eap"))
|
||||
{
|
||||
eap_vendor_type_t *type;
|
||||
|
||||
|
||||
@@ -175,7 +175,7 @@ METHOD(stroke_cred_t, load_ca, certificate_t*,
|
||||
certificate_t *cert = NULL;
|
||||
char path[PATH_MAX];
|
||||
|
||||
if (strneq(filename, "%smartcard", strlen("%smartcard")))
|
||||
if (strpfx(filename, "%smartcard"))
|
||||
{
|
||||
smartcard_format_t format;
|
||||
char module[SC_PART_LEN], keyid[SC_PART_LEN];
|
||||
@@ -239,7 +239,7 @@ METHOD(stroke_cred_t, load_peer, certificate_t*,
|
||||
certificate_t *cert = NULL;
|
||||
char path[PATH_MAX];
|
||||
|
||||
if (strneq(filename, "%smartcard", strlen("%smartcard")))
|
||||
if (strpfx(filename, "%smartcard"))
|
||||
{
|
||||
smartcard_format_t format;
|
||||
char module[SC_PART_LEN], keyid[SC_PART_LEN];
|
||||
@@ -787,7 +787,7 @@ static bool load_pin(mem_cred_t *secrets, chunk_t line, int line_nr,
|
||||
}
|
||||
|
||||
chunk = chunk_from_hex(chunk_create(keyid, strlen(keyid)), NULL);
|
||||
if (secret.len == 7 && strneq(secret.ptr, "%prompt", 7))
|
||||
if (secret.len == 7 && strpfx(secret.ptr, "%prompt"))
|
||||
{
|
||||
free(secret.ptr);
|
||||
if (!prompt)
|
||||
@@ -880,7 +880,7 @@ static bool load_from_file(chunk_t line, int line_nr, FILE *prompt,
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
if (secret.len == 7 && strneq(secret.ptr, "%prompt", 7))
|
||||
if (secret.len == 7 && strpfx(secret.ptr, "%prompt"))
|
||||
{
|
||||
callback_cred_t *cb;
|
||||
passphrase_cb_data_t pp_data = {
|
||||
@@ -1142,8 +1142,7 @@ static void load_secrets(private_stroke_cred_t *this, mem_cred_t *secrets,
|
||||
{
|
||||
continue;
|
||||
}
|
||||
if (line.len > strlen("include ") &&
|
||||
strneq(line.ptr, "include ", strlen("include ")))
|
||||
if (line.len > strlen("include ") && strpfx(line.ptr, "include "))
|
||||
{
|
||||
char **expanded, *dir, pattern[PATH_MAX];
|
||||
u_char *pos;
|
||||
@@ -1211,7 +1210,7 @@ static void load_secrets(private_stroke_cred_t *this, mem_cred_t *secrets,
|
||||
continue;
|
||||
}
|
||||
|
||||
if (line.len > 2 && strneq(": ", line.ptr, 2))
|
||||
if (line.len > 2 && strpfx(line.ptr, ": "))
|
||||
{
|
||||
/* no ids, skip the ':' */
|
||||
ids = chunk_empty;
|
||||
|
||||
Reference in New Issue
Block a user