Remove trailing whitespace

This commit is contained in:
Colton Willey 2024-05-29 21:29:55 -07:00
parent 473de5796c
commit a17677c946
2 changed files with 5 additions and 5 deletions

View File

@ -20094,8 +20094,8 @@ static int DecodeSubtreeGeneralName(const byte* input, word32 sz, byte tag,
* @param [in] input Buffer holding data.
* @param [in] sz Size of data in buffer.
* @param [in, out] head Linked list of subtree names.
* @param [in] limit If > 0, limit on number of tree
* entries to process, exceeding
* @param [in] limit If > 0, limit on number of tree
* entries to process, exceeding
* is an error.
* @param [in] heap Dynamic memory hint.
* @return 0 on success.
@ -20324,7 +20324,7 @@ static int DecodeNameConstraints(const byte* input, word32 sz,
ret = DecodeSubtree(
dataASN[NAMECONSTRAINTSASN_IDX_PERMIT].data.ref.data,
dataASN[NAMECONSTRAINTSASN_IDX_PERMIT].data.ref.length,
&cert->permittedNames, WOLFSSL_MAX_NAME_CONSTRAINTS,
&cert->permittedNames, WOLFSSL_MAX_NAME_CONSTRAINTS,
cert->heap);
}
}
@ -20334,7 +20334,7 @@ static int DecodeNameConstraints(const byte* input, word32 sz,
ret = DecodeSubtree(
dataASN[NAMECONSTRAINTSASN_IDX_EXCLUDE].data.ref.data,
dataASN[NAMECONSTRAINTSASN_IDX_EXCLUDE].data.ref.length,
&cert->excludedNames, WOLFSSL_MAX_NAME_CONSTRAINTS,
&cert->excludedNames, WOLFSSL_MAX_NAME_CONSTRAINTS,
cert->heap);
}
}

View File

@ -781,7 +781,7 @@ extern const WOLFSSL_ObjectInfo wolfssl_object_info[];
#endif
/* Maximum number of allowed subject alternative names in a certificate.
* Any certificate containing more than this number of subject
* Any certificate containing more than this number of subject
* alternative names will cause an error when attempting to parse. */
#ifndef WOLFSSL_MAX_ALT_NAMES
#define WOLFSSL_MAX_ALT_NAMES 128