*** stdutil/src/stdhash.c.orig Thu Jan 10 12:45:50 2002 --- stdutil/src/stdhash.c Thu Jan 10 12:46:23 2002 *************** *** 21,26 **** --- 21,27 ---- */ #include + #include #ifdef USE_DMALLOC #include *** ssp/src/blowfish.c.orig Thu Jan 10 13:12:04 2002 --- ssp/src/blowfish.c Thu Jan 10 13:12:31 2002 *************** *** 23,28 **** --- 23,29 ---- #include + #include #include "blowfish.h" #ifdef USE_DMALLOC *** ssp/src/clq_alg.c.orig Thu Jan 10 13:13:49 2002 --- ssp/src/clq_alg.c Thu Jan 10 13:14:06 2002 *************** *** 35,40 **** --- 35,41 ---- /***********************************************************************************************/ #include + #include #include #include "clq_alg.h" *** ssp/src/flooder.c.orig Thu Jan 10 13:14:34 2002 --- ssp/src/flooder.c Thu Jan 10 13:19:07 2002 *************** *** 20,25 **** --- 20,26 ---- */ #include + #include #include #include #include "ssp.h" *************** *** 200,206 **** if(ret != Num_bytes) { if(ret < 0){ SSP_error( ret ); ! exit(); } printf("sent a different message %d -> %d\n", Num_bytes, ret ); } --- 201,207 ---- if(ret != Num_bytes) { if(ret < 0){ SSP_error( ret ); ! exit(1); } printf("sent a different message %d -> %d\n", Num_bytes, ret ); } *************** *** 243,249 **** } if(ret < 0) { SSP_error( ret ); ! exit(); } else if (ret == 0) { printf("Got zero length message! i = %d, sender = %s to %d groups " --- 244,250 ---- } if(ret < 0) { SSP_error( ret ); ! exit(1); } else if (ret == 0) { printf("Got zero length message! i = %d, sender = %s to %d groups " *************** *** 401,407 **** "\t[-c ] : test scatter setting bytes per scatter[0/1]", "\t[-f ] : name of the file where the results will be saved"); ! exit(); } } } --- 402,408 ---- "\t[-c ] : test scatter setting bytes per scatter[0/1]", "\t[-f ] : name of the file where the results will be saved"); ! exit(1); } } } *** ssp/src/scatter_cryptor.c.orig Thu Jan 10 13:13:05 2002 --- ssp/src/scatter_cryptor.c Thu Jan 10 13:13:19 2002 *************** *** 24,29 **** --- 24,30 ---- #include #include + #include #include "scatter_cryptor.h" *** ssp/src/ssp_info.c.orig Thu Jan 10 13:10:47 2002 --- ssp/src/ssp_info.c Thu Jan 10 13:11:26 2002 *************** *** 479,485 **** char *grp_name_ptr; SSP_Grp *grp = NULL; ! grp_name_ptr = grp_name; stdhash_find(&(con->grps_hash), &hit, &grp_name_ptr); grp = *(SSP_Grp**) stdhash_it_val(&hit); assert(!stdhash_it_is_end(&hit)); --- 479,485 ---- char *grp_name_ptr; SSP_Grp *grp = NULL; ! grp_name_ptr = (char *)grp_name; stdhash_find(&(con->grps_hash), &hit, &grp_name_ptr); grp = *(SSP_Grp**) stdhash_it_val(&hit); assert(!stdhash_it_is_end(&hit)); *** ssp/src/ssp_p.c.orig Thu Jan 10 13:16:50 2002 --- ssp/src/ssp_p.c Thu Jan 10 13:17:07 2002 *************** *** 31,36 **** --- 31,37 ---- /***********************************************************************************************/ #include + #include #include "ssp_info.h" *** ssp/src/user.c.orig Thu Jan 10 13:17:29 2002 --- ssp/src/user.c Thu Jan 10 13:17:42 2002 *************** *** 25,30 **** --- 25,31 ---- #include "ssp.h" #include #include + #include #ifdef DMALLOC #include "dmalloc.h" *** flush/src/scatp.h.orig Thu Jan 10 13:01:35 2002 --- flush/src/scatp.h Thu Jan 10 13:01:55 2002 *************** *** 27,32 **** --- 27,33 ---- #include #include + #include #ifndef __inline__ # define __inline__ *** flush/src/user.c.orig Thu Jan 10 13:03:40 2002 --- flush/src/user.c Thu Jan 10 13:03:59 2002 *************** *** 23,28 **** --- 23,29 ---- */ #include + #include #include #include *** clq/src/clq_api_misc.c.orig Thu Jan 10 12:36:02 2002 --- clq/src/clq_api_misc.c Thu Jan 10 12:40:22 2002 *************** *** 44,49 **** --- 44,50 ---- *********************************************************************/ #include + #include /* The next three are needed for creat() in clq_gen_params */ #include #include *************** *** 110,116 **** * variable. By default is: $HOME/.rnd defined in e_os.h * Note: The only purpose of this random file is to get stats of it. */ ! randfile=RAND_file_name(buffer,200); if (randfile == NULL) goto end; if (!(rnum=RAND_load_file(randfile,1024L*1024L))) { /* RANDFILE doesn't exist. Let's create one. */ --- 111,117 ---- * variable. By default is: $HOME/.rnd defined in e_os.h * Note: The only purpose of this random file is to get stats of it. */ ! randfile= (char *)RAND_file_name(buffer,200); if (randfile == NULL) goto end; if (!(rnum=RAND_load_file(randfile,1024L*1024L))) { /* RANDFILE doesn't exist. Let's create one. */