Get rid of remaining C++-style comments which strict C compilers hate.
authorRalf S. Engelschall <rse@openssl.org>
Sat, 27 Feb 1999 12:17:40 +0000 (12:17 +0000)
committerRalf S. Engelschall <rse@openssl.org>
Sat, 27 Feb 1999 12:17:40 +0000 (12:17 +0000)
(Pointed out by Carlos Amengual).

CHANGES
crypto/bio/bss_sock.c
crypto/bn/exp.c
crypto/bn/test.c
crypto/comp/comp_err.c
crypto/rand/md_rand.c

diff --git a/CHANGES b/CHANGES
index 6be84d728fe0043437961288171c4c81cbd46e4f..2aa108ef0fb22cc9bf63631c55225c15e21bf8f2 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -4,6 +4,9 @@
 
 
  Changes between 0.9.1c and 0.9.2
+  
+  *) Get rid of remaining C++-style comments which strict C compilers hate.
+     [Ralf S. Engelschall, pointed out by Carlos Amengual]
 
   *) Changed BN_RECURSION in bn_mont.c to BN_RECURSION_MONT so it is not
      compiled in by default: it has problems with large keys.
index 299787aa1dd659347d98fd203049770f6ab6962e..cfd2f119921056eae137a4e460439a53a44bdc5a 100644 (file)
@@ -385,7 +385,7 @@ int i;
                err=get_last_sys_error();
 #endif
 
-#if defined(WINDOWS) && 0 /* more microsoft stupidity *//* perhaps not? Ben 4/1/99 */
+#if defined(WINDOWS) && 0 /* more microsoft stupidity? perhaps not? Ben 4/1/99 */
                if ((i == -1) && (err == 0))
                        return(1);
 #endif
index 6a24fee749148e8093e4a377c18b2fb8f9d49c91..dd49d967a4e0151d8464f69e862e188c9e3b780d 100644 (file)
@@ -43,12 +43,12 @@ char *argv[];
                ms_time_get(start);
                for (i=0; i<num; i++)
                        {
-                       //bn_mull(&r,&a,&b,&ctx);
-                       //BN_sqr(&r,&a,&ctx);
+                       /* bn_mull(&r,&a,&b,&ctx); */
+                       /* BN_sqr(&r,&a,&ctx); */
                        BN_mod_exp_mont(&r,&a,&b,&c,&ctx,&mont);
                        }
                ms_time_get(end);
-               d=ms_time_diff(start,end)/* *50/33 /**/;
+               d=ms_time_diff(start,end)/* *50/33 */;
                printf("%5d bit:%6.2f %6d %6.4f %4d m_set(%5.4f)\n",size,
                        d,num,d/num,(int)((d/num)*mod),md/10.0);
                num/=8;
index e23f21583f2a91a04534c9151bc0fbe692276b22..46fdc9c27e259b0ebc9e17e35a9490ddd35aba26 100644 (file)
@@ -120,18 +120,18 @@ s0.max=bl.top; s1.max=bh.top;
        t3.top=(t2.top > words)?words:t2.top;
        t3.neg=t2.neg;
 t3.max=t3.top;
-// BN_print_fp(stdout,&s1); printf(" s1\n");
-// BN_print_fp(stdout,&t2); printf(" middle value\n");
-// BN_print_fp(stdout,&t3); printf(" low middle value\n");
+/* BN_print_fp(stdout,&s1); printf(" s1\n"); */
+/* BN_print_fp(stdout,&t2); printf(" middle value\n"); */
+/* BN_print_fp(stdout,&t3); printf(" low middle value\n"); */
        BN_sub(&t1,&s1,&t3);
 
        if (t1.neg)
                {
-//printf("neg fixup\n"); //BN_print_fp(stdout,&t1); printf(" before\n");
+/*printf("neg fixup\n"); BN_print_fp(stdout,&t1); printf(" before\n"); */
                BN_lshift(&t2,BN_value_one(),words*32);
                BN_add(&t1,&t2,&t1);
                BN_mask_bits(&t1,words*32);
-// BN_print_fp(stdout,&t1); printf(" after\n");
+/* BN_print_fp(stdout,&t1); printf(" after\n"); */
                }
        /* al*bl == high(al*bl)<<words+s0 */
        BN_lshift(&t1,&t1,words*32);
index 7b68fc1b9d3125ef4379577c3660528337b009cf..e6881591d44427d93fa2d7e830fd8630f21161e0 100644 (file)
@@ -1,4 +1,4 @@
-/* lib//_err.c */
+/* crypto/comp/comp_err.c */
 /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
index bef42459109c713cf8aaef4de6a5e2efd9921eb0..47692cb71c61220bb0f778d263d014065292d954 100644 (file)
@@ -346,13 +346,13 @@ int num;
  * <URL:http://www.microsoft.com/kb/developr/win_dk/q97193.htm>;
  * the original copyright message is:
  *
-//   (C) Copyright Microsoft Corp. 1993.  All rights reserved.
-//
-//   You have a royalty-free right to use, modify, reproduce and
-//   distribute the Sample Files (and/or any modified version) in
-//   any way you find useful, provided that you agree that
-//   Microsoft has no warranty obligations or liability for any
-//   Sample Application Files which are modified.
+ *   (C) Copyright Microsoft Corp. 1993.  All rights reserved.
+ *
+ *   You have a royalty-free right to use, modify, reproduce and
+ *   distribute the Sample Files (and/or any modified version) in
+ *   any way you find useful, provided that you agree that
+ *   Microsoft has no warranty obligations or liability for any
+ *   Sample Application Files which are modified.
  */
 /*
  * I have modified the loading of bytes via RAND_seed() mechanism since