]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
Fix compilation in pedantic mode
authorLev Stipakov <lstipakov@gmail.com>
Tue, 4 Oct 2016 20:42:16 +0000 (23:42 +0300)
committerGert Doering <gert@greenie.muc.de>
Mon, 10 Oct 2016 08:53:23 +0000 (10:53 +0200)
Replace C++ style comments, which are not allowed in ISO C90 standard,
with C style comments

Signed-off-by: Lev Stipakov <lstipakov@gmail.com>
Acked-by: Steffan Karger <steffan.karger@fox-it.com>
Acked-by: Gert Doering <gert@greenie.muc.de>
Message-Id: <1475613736-1529-1-git-send-email-lstipakov@gmail.com>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg12600.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
src/openvpn/crypto_openssl.c
src/openvpn/ssl.c
src/openvpn/ssl_openssl.c
src/plugins/auth-pam/utils.c

index 2180b1a48297c754c8eb7e24cc53145493a37f99..7b1ac6c02c27ad66d85760c7a07f7ddbcaff3df8 100644 (file)
@@ -278,13 +278,13 @@ crypto_init_dmalloc (void)
 
 const char *
 translate_cipher_name_from_openvpn (const char *cipher_name) {
-  // OpenSSL doesn't require any translation
+  /* OpenSSL doesn't require any translation */
   return cipher_name;
 }
 
 const char *
 translate_cipher_name_to_openvpn (const char *cipher_name) {
-  // OpenSSL doesn't require any translation
+  /* OpenSSL doesn't require any translation */
   return cipher_name;
 }
 
index 4de3354154c5d2406de8f38bc43883c652ef2a79..33fd9dd6b7ad7c59f00bd17e0eb77ca1065a1789 100644 (file)
@@ -267,7 +267,7 @@ tls_get_cipher_name_pair (const char * cipher_name, size_t len) {
       pair++;
   }
 
-  // No entry found, return NULL
+  /* No entry found, return NULL */
   return NULL;
 }
 
index a226aac6df89fd67335117e5403bdb7a715cb520..055b355eb2b721b363b94597d30cfe35b116ea3b 100644 (file)
@@ -294,7 +294,7 @@ tls_ctx_restrict_ciphers(struct tls_root_ctx *ctx, const char *ciphers)
 
   ASSERT(NULL != ctx);
 
-  // Translate IANA cipher suite names to OpenSSL names
+  /* Translate IANA cipher suite names to OpenSSL names */
   begin_of_cipher = end_of_cipher = 0;
   for (; begin_of_cipher < strlen(ciphers); begin_of_cipher = end_of_cipher) {
       end_of_cipher += strcspn(&ciphers[begin_of_cipher], ":");
@@ -302,31 +302,32 @@ tls_ctx_restrict_ciphers(struct tls_root_ctx *ctx, const char *ciphers)
 
       if (NULL == cipher_pair)
         {
-          // No translation found, use original
-          current_cipher = &ciphers[begin_of_cipher];
-          current_cipher_len = end_of_cipher - begin_of_cipher;
-
-          // Issue warning on missing translation
-          // %.*s format specifier expects length of type int, so guarantee
-          // that length is small enough and cast to int.
-          msg (M_WARN, "No valid translation found for TLS cipher '%.*s'",
-              (int) MIN(current_cipher_len, 256), current_cipher);
+         /* No translation found, use original */
+         current_cipher = &ciphers[begin_of_cipher];
+         current_cipher_len = end_of_cipher - begin_of_cipher;
+
+         /* Issue warning on missing translation
+          * %.*s format specifier expects length of type int, so guarantee
+          * that length is small enough and cast to int.
+          */
+         msg (M_WARN, "No valid translation found for TLS cipher '%.*s'",
+             (int) MIN(current_cipher_len, 256), current_cipher);
         }
       else
        {
-         // Use OpenSSL name
-          current_cipher = cipher_pair->openssl_name;
-          current_cipher_len = strlen(current_cipher);
+         /* Use OpenSSL name */
+         current_cipher = cipher_pair->openssl_name;
+         current_cipher_len = strlen(current_cipher);
 
          if (end_of_cipher - begin_of_cipher == current_cipher_len &&
              0 == memcmp (&ciphers[begin_of_cipher], cipher_pair->openssl_name, end_of_cipher - begin_of_cipher))
            {
-             // Non-IANA name used, show warning
+             /* Non-IANA name used, show warning */
              msg (M_WARN, "Deprecated TLS cipher name '%s', please use IANA name '%s'", cipher_pair->openssl_name, cipher_pair->iana_name);
            }
        }
 
-      // Make sure new cipher name fits in cipher string
+      /* Make sure new cipher name fits in cipher string */
       if (((sizeof(openssl_ciphers)-1) - openssl_ciphers_len) < current_cipher_len)
        {
          msg (M_FATAL,
@@ -334,7 +335,7 @@ tls_ctx_restrict_ciphers(struct tls_root_ctx *ctx, const char *ciphers)
              (int)sizeof(openssl_ciphers)-1);
        }
 
-      // Concatenate cipher name to OpenSSL cipher string
+      /* Concatenate cipher name to OpenSSL cipher string */
       memcpy(&openssl_ciphers[openssl_ciphers_len], current_cipher, current_cipher_len);
       openssl_ciphers_len += current_cipher_len;
       openssl_ciphers[openssl_ciphers_len] = ':';
@@ -346,7 +347,7 @@ tls_ctx_restrict_ciphers(struct tls_root_ctx *ctx, const char *ciphers)
   if (openssl_ciphers_len > 0)
     openssl_ciphers[openssl_ciphers_len-1] = '\0';
 
-  // Set OpenSSL cipher list
+  /* Set OpenSSL cipher list */
   if(!SSL_CTX_set_cipher_list(ctx->ctx, openssl_ciphers))
     crypto_msg (M_FATAL, "Failed to set restricted TLS cipher list: %s", openssl_ciphers);
 }
@@ -1407,7 +1408,7 @@ show_available_tls_ciphers (const char *cipher_list)
       pair = tls_get_cipher_name_pair(cipher_name, strlen(cipher_name));
 
       if (NULL == pair) {
-          // No translation found, print warning
+          /* No translation found, print warning */
          printf ("%s (No IANA name known to OpenVPN, use OpenSSL name.)\n", cipher_name);
       } else {
          printf ("%s\n", pair->iana_name);
index 4f2bec1e5f9412a3988c59b5fa7fa39a441fb88d..e4643cdb2855d007500142d3de09eb12d4dd56e7 100644 (file)
@@ -59,7 +59,7 @@ searchandreplace(const char *tosearch, const char *searchfor, const char *replac
        return NULL;
   }
 
-  // state: all parameters are valid
+  /* state: all parameters are valid */
 
   const char *searching=tosearch;
   char *scratch;