=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/gzsig/Attic/key.c,v retrieving revision 1.4 retrieving revision 1.5 diff -c -r1.4 -r1.5 *** src/usr.bin/gzsig/Attic/key.c 2006/04/01 19:57:32 1.4 --- src/usr.bin/gzsig/Attic/key.c 2006/04/03 01:33:09 1.5 *************** *** 1,4 **** ! /* $OpenBSD: key.c,v 1.4 2006/04/01 19:57:32 otto Exp $ */ /* * key.c --- 1,4 ---- ! /* $OpenBSD: key.c,v 1.5 2006/04/03 01:33:09 djm Exp $ */ /* * key.c *************** *** 101,112 **** struct key * key_new(void) { ! struct key *k; ! ! if ((k = calloc(sizeof(*k), 1)) == NULL) ! return (NULL); ! ! return (k); } int --- 101,107 ---- struct key * key_new(void) { ! return (calloc(1, sizeof(struct key))); } int