X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=ck_crp.c;h=593d0b48874c41db4451c6b4f03e9af92bd9a908;hb=6e88326e299ae5b46e12a40768123d637f1eab6d;hp=ec99cdfb5925d22c689f1897a17530386de75b80;hpb=31e271107096d1ffa97b7d0c15222b8bd5e69f74;p=ckermit.git diff --git a/ck_crp.c b/ck_crp.c index ec99cdf..593d0b4 100644 --- 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));