Imported Upstream version 302
[ckermit.git] / ck_crp.c
index ec99cdf..593d0b4 100644 (file)
--- a/ck_crp.c
+++ b/ck_crp.c
@@ -411,6 +411,10 @@ int
 des_new_random_key(Block B)
 {
     int rc=0;
+    /* WARNING:
+       This might need to have the "rc = " removed because this
+       is VOID in later, and maybe even all, versions.
+    */       
     rc = des_random_key(B);
     return(rc);
 }
@@ -481,6 +485,8 @@ des_new_random_key(Block B)
  * These function pointers point to the current routines
  * for encrypting and decrypting data.
  */
+/* NOTE: These next two might need to have the "static " removed */
+
 static VOID     (*encrypt_output) P((unsigned char *, int));
 static int      (*decrypt_input) P((int));