=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tcfs/Attic/tcfsaddgroup.c,v retrieving revision 1.10 retrieving revision 1.11 diff -c -r1.10 -r1.11 *** src/usr.bin/tcfs/Attic/tcfsaddgroup.c 2000/06/20 06:45:16 1.10 --- src/usr.bin/tcfs/Attic/tcfsaddgroup.c 2000/06/20 08:59:52 1.11 *************** *** 1,4 **** ! /* $OpenBSD: tcfsaddgroup.c,v 1.10 2000/06/20 06:45:16 fgsch Exp $ */ /* * Transparent Cryptographic File System (TCFS) for NetBSD --- 1,4 ---- ! /* $OpenBSD: tcfsaddgroup.c,v 1.11 2000/06/20 08:59:52 fgsch Exp $ */ /* * Transparent Cryptographic File System (TCFS) for NetBSD *************** *** 169,178 **** addgroup_main(int argn, char *argv[]) { int val; ! gid_t gid; int have_gid = FALSE, have_members = FALSE, have_threshold = FALSE; int be_verbose = FALSE; ! int temp_members, members; tcfsgpwdb **group_info; /* --- 169,178 ---- addgroup_main(int argn, char *argv[]) { int val; ! gid_t gid = 0; int have_gid = FALSE, have_members = FALSE, have_threshold = FALSE; int be_verbose = FALSE; ! int temp_members, members = 0; tcfsgpwdb **group_info; /* *************** *** 222,228 **** char *buff = NULL; int len; ! buff = (char *)calloc(2048, sizeof(char)); if (!buff) tcfs_error(ER_MEM, NULL); --- 222,228 ---- char *buff = NULL; int len; ! buff = (char *)malloc(2048); if (!buff) tcfs_error(ER_MEM, NULL);