]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
lib: cleanup some whitespace nits
authorx2018 <xkernel.wang@foxmail.com>
Wed, 19 Nov 2025 15:25:57 +0000 (23:25 +0800)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 21 Nov 2025 10:25:59 +0000 (11:25 +0100)
Closes #19588

lib/vtls/openssl.c
src/tool_operhlp.c
src/tool_setopt.c
src/tool_ssls.c

index 909c9a135b2416e07d630a65184156eabc49da10..5d35ba1a153066ab7c3afaaa2927ae32e74e3944 100644 (file)
@@ -277,7 +277,7 @@ static CURLcode X509V3_ext(struct Curl_easy *data,
 
     if(asn1_object_dump(obj, namebuf, sizeof(namebuf)))
       /* make sure the name is null-terminated */
-      namebuf [ sizeof(namebuf) - 1] = 0;
+      namebuf[sizeof(namebuf) - 1] = 0;
 
     if(!X509V3_EXT_print(bio_out, ext, 0, 0))
       ASN1_STRING_print(bio_out, (ASN1_STRING *)X509_EXTENSION_get_data(ext));
index e17955bec306cc9d4c6a6567dfbc25b37cf9fd20..0d6c2cb6e0e560db08210c077845dcd2b49da5af 100644 (file)
@@ -92,7 +92,7 @@ CURLcode add_file_name_to_url(CURL *curl, char **inurlp, const char *filename)
   if(uh) {
     char *ptr;
     uerr = curl_url_set(uh, CURLUPART_URL, *inurlp,
-                    CURLU_GUESS_SCHEME|CURLU_NON_SUPPORT_SCHEME);
+                        CURLU_GUESS_SCHEME|CURLU_NON_SUPPORT_SCHEME);
     if(uerr) {
       result = urlerr_cvt(uerr);
       goto fail;
index ccecd3a7e030bcbbbaaf881e12453f0727382a55..b7039fbb48818fc0073913d25c8e443f9c8e3a9d 100644 (file)
@@ -623,7 +623,7 @@ CURLcode tool_setopt_offt(CURL *curl, const char *name, CURLoption tag,
   if(global->libcurl && !ret && lval) {
     /* we only use this for real if --libcurl was used */
     ret = easysrc_addf(&easysrc_code, "curl_easy_setopt(hnd, %s, (curl_off_t)%"
-          CURL_FORMAT_CURL_OFF_T ");", name, lval);
+                       CURL_FORMAT_CURL_OFF_T ");", name, lval);
   }
 
   return ret;
index 4c9d1ee0085732d60424c74b7b93c5123e302078..40e67a8044c948a24f773c65c04f5ef954d3c2ce 100644 (file)
@@ -156,8 +156,8 @@ static CURLcode tool_ssls_exp(CURL *easy, void *userptr,
   (void)earlydata_max;
   if(!ctx->exported)
     fputs("# Your SSL session cache. https://curl.se/docs/ssl-sessions.html\n"
-        "# This file was generated by libcurl! Edit at your own risk.\n",
-        ctx->fp);
+          "# This file was generated by libcurl! Edit at your own risk.\n",
+          ctx->fp);
 
   r = curlx_base64_encode((const char *)shmac, shmac_len, &enc, &enc_len);
   if(r)