Remove whitespace from 'white space'
authorhaykam821 <24855774+haykam821@users.noreply.github.com>
Mon, 15 Jun 2020 20:17:15 +0000 (16:17 -0400)
committerRichard Levitte <levitte@openssl.org>
Fri, 19 Jun 2020 05:59:46 +0000 (07:59 +0200)
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)

12 files changed:
apps/lib/win32_init.c
crypto/asn1/asn_mime.c
crypto/evp/encode.c
crypto/perlasm/arm-xlate.pl
crypto/perlasm/ppc-xlate.pl
crypto/perlasm/x86_64-xlate.pl
doc/man1/openssl-asn1parse.pod.in
doc/man1/openssl-ca.pod.in
doc/man1/openssl-req.pod.in
doc/man1/openssl-ts.pod.in
doc/man5/config.pod
util/find-doc-nits

index 8836b3ba3913a059d7bf380c5a83af4ff22bea14..05d3c681d7ff78add91128608f9a7e6bb3719f5d 100644 (file)
@@ -167,7 +167,7 @@ void win32_utf8argv(int *argc, char **argv[])
         int in_quote = 0;
 
         if (*p == L' ' || *p == L'\t') {
-            p++; /* skip over white spaces */
+            p++; /* skip over whitespace */
             continue;
         }
 
index 4eb92d68441cf6ae68fa53adb96bf48ff2178cec..dab89e57d51eaa1018cf4a5f9c10cbd55c666f42 100644 (file)
@@ -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 == '"') {
index 01552ac0982b92dc132d0dc095f71a52e0c43548..9c9a2836c44e99274ff66f3a04c7011bc5e9884d 100644 (file)
@@ -422,7 +422,7 @@ static int evp_decodeblock_int(EVP_ENCODE_CTX *ctx, unsigned char *t,
     else
         table = data_ascii2bin;
 
-    /* trim white space from the start of the line. */
+    /* trim whitespace from the start of the line. */
     while ((n > 0) && (conv_ascii2bin(*f, table) == B64_WS)) {
         f++;
         n--;
index f0e495d4269b985c8a715f0ae864accbb47123d6..a90885905c0fdbf7c4f1b830d644181883720c99 100755 (executable)
@@ -150,7 +150,7 @@ while(my $line=<>) {
     if ($line =~ m/^\s*(#|@|\/\/)/)    { print $line; next; }
 
     $line =~ s|/\*.*\*/||;     # get rid of C-style comments...
-    $line =~ s|^\s+||;         # ... and skip white spaces in beginning...
+    $line =~ s|^\s+||;         # ... and skip whitespace in beginning...
     $line =~ s|\s+$||;         # ... and at the end
 
     {
index 0c8009c0319c46dbe0e8a2096ce51875fafb5ff8..136e73e8afd2ce818f5236f55940a465de3b7217 100755 (executable)
@@ -306,7 +306,7 @@ while($line=<>) {
 
     $line =~ s|[#!;].*$||;     # get rid of asm-style comments...
     $line =~ s|/\*.*\*/||;     # ... and C-style comments...
-    $line =~ s|^\s+||;         # ... and skip white spaces in beginning...
+    $line =~ s|^\s+||;         # ... and skip whitespaces in beginning...
     $line =~ s|\s+$||;         # ... and at the end
 
     {
index fdf3e5438e6b35f45448f931c6865ffa707f5387..1830b255659955a2d3af553b5954eab4237f002e 100755 (executable)
@@ -1200,7 +1200,7 @@ while(defined(my $line=<>)) {
 
     $line =~ s|[#!].*$||;      # get rid of asm-style comments...
     $line =~ s|/\*.*\*/||;     # ... and C-style comments...
-    $line =~ s|^\s+||;         # ... and skip white spaces in beginning
+    $line =~ s|^\s+||;         # ... and skip whitespaces in beginning
     $line =~ s|\s+$||;         # ... and at the end
 
     if (my $label=label->re(\$line))   { print $label->out(); }
index 2374348561c943a2cea8a66254c3a77baffa1d4b..bafcc225d9494e56a50d9c0a6784a14c6f59f67d 100644 (file)
@@ -158,7 +158,7 @@ numerical form (for example 1.2.3.4). The file passed to the B<-oid> option
 allows additional OIDs to be included. Each line consists of three columns,
 the first column is the OID in numerical format and should be followed by white
 space. The second column is the "short name" which is a single word followed
-by white space. The final column is the rest of the line and is the
+by whitespace. The final column is the rest of the line and is the
 "long name". Example:
 
 C<1.2.3.4       shortName       A long name>
index 35b36afbb40c77b76f6526372d7586c86d3ed00d..22a0cb40d8f8b1da8183817bbe7bfdafba9ace3e 100644 (file)
@@ -432,8 +432,8 @@ any) used.
 
 This specifies a file containing additional B<OBJECT IDENTIFIERS>.
 Each line of the file should consist of the numerical form of the
-object identifier followed by white space then the short name followed
-by white space and finally the long name.
+object identifier followed by whitespace then the short name followed
+by whitespace and finally the long name.
 
 =item B<oid_section>
 
index ab6b3d78a2afdd94b39d05f6152216ac86492adc..25295d02fcc4cf431b4f586f403b0f6bd660be80 100644 (file)
@@ -375,8 +375,8 @@ overridden by the B<-keyout> option.
 
 This specifies a file containing additional B<OBJECT IDENTIFIERS>.
 Each line of the file should consist of the numerical form of the
-object identifier followed by white space then the short name followed
-by white space and finally the long name.
+object identifier followed by whitespace then the short name followed
+by whitespace and finally the long name.
 
 =item B<oid_section>
 
index 10386a3fc523fbc02e76ef1635723ef138f4132e..e7bc607a1f48ef089eb5594d562ab61e2e176a25 100644 (file)
@@ -372,8 +372,8 @@ section can be overridden with the B<-section> command line switch. (Optional)
 
 This specifies a file containing additional B<OBJECT IDENTIFIERS>.
 Each line of the file should consist of the numerical form of the
-object identifier followed by white space then the short name followed
-by white space and finally the long name. (Optional)
+object identifier followed by whitespace then the short name followed
+by whitespace and finally the long name. (Optional)
 
 =item B<oid_section>
 
index 12a1d1043e56743c224c7afb3e0469a58485712f..13bd526c4902b75788993fd2b5948959ab530277 100644 (file)
@@ -119,7 +119,7 @@ leading text that is preceded with a period. For example:
  2.OU = Second OU
 
 The B<value> consists of the string following the B<=> character until end
-of line with any leading and trailing white space removed.
+of line with any leading and trailing whitespace removed.
 
 The value string undergoes variable expansion. The text C<$var> or C<${var}>
 inserts the value of the named variable from the current section.
index c40a4c80527035ba111219dfad4fcbe5f94e8565..0feb01e27c668ef0ea964f25185cd99e8a3b35b4 100755 (executable)
@@ -901,7 +901,7 @@ sub collectnames {
     }
     foreach my $name ( @{$podinfo{names}} ) {
         next if $name eq "";
-        err($id, "'$name' contains white space")
+        err($id, "'$name' contains whitespace")
             if $name =~ /\s/;
         my $name_sec = "$name($section)";
         if ( !defined $name_map{$name_sec} ) {