diff options
author | haykam821 <24855774+haykam821@users.noreply.github.com> | 2020-06-15 22:17:15 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2020-06-19 07:59:46 +0200 |
commit | 6f72b210b2ae15577f0f043a371dba041e16f2a8 (patch) | |
tree | 87bd98e3be801f6bd0162d0271d127c77a0af7f6 /crypto/asn1/asn_mime.c | |
parent | Configure DEPs for FIPS provider on AIX. (diff) | |
download | openssl-6f72b210b2ae15577f0f043a371dba041e16f2a8.tar.xz openssl-6f72b210b2ae15577f0f043a371dba041e16f2a8.zip |
Remove whitespace from 'white space'
CLA: trivial
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12161)
Diffstat (limited to 'crypto/asn1/asn_mime.c')
-rw-r--r-- | crypto/asn1/asn_mime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/asn1/asn_mime.c b/crypto/asn1/asn_mime.c index 4eb92d6844..dab89e57d5 100644 --- a/crypto/asn1/asn_mime.c +++ b/crypto/asn1/asn_mime.c @@ -763,7 +763,7 @@ static char *strip_ends(char *name) static char *strip_start(char *name) { char *p, c; - /* Look for first non white space or quote */ + /* Look for first non whitespace or quote */ for (p = name; (c = *p); p++) { if (c == '"') { /* Next char is start of string if non null */ @@ -784,7 +784,7 @@ static char *strip_end(char *name) char *p, c; if (!name) return NULL; - /* Look for first non white space or quote */ + /* Look for first non whitespace or quote */ for (p = name + strlen(name) - 1; p >= name; p--) { c = *p; if (c == '"') { |