=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/bdes/Attic/bdes.c,v retrieving revision 1.12 retrieving revision 1.13 diff -c -r1.12 -r1.13 *** src/usr.bin/bdes/Attic/bdes.c 2003/07/02 21:04:09 1.12 --- src/usr.bin/bdes/Attic/bdes.c 2003/11/15 00:23:02 1.13 *************** *** 1,4 **** ! /* $OpenBSD: bdes.c,v 1.12 2003/07/02 21:04:09 deraadt Exp $ */ /* $NetBSD: bdes.c,v 1.2 1995/03/26 03:33:19 glass Exp $ */ /*- --- 1,4 ---- ! /* $OpenBSD: bdes.c,v 1.13 2003/11/15 00:23:02 tedu Exp $ */ /* $NetBSD: bdes.c,v 1.2 1995/03/26 03:33:19 glass Exp $ */ /*- *************** *** 47,53 **** #if 0 static char sccsid[] = "@(#)bdes.c 8.1 (Berkeley) 6/6/93"; #else ! static char rcsid[] = "$OpenBSD: bdes.c,v 1.12 2003/07/02 21:04:09 deraadt Exp $"; #endif #endif /* not lint */ --- 47,53 ---- #if 0 static char sccsid[] = "@(#)bdes.c 8.1 (Berkeley) 6/6/93"; #else ! static char rcsid[] = "$OpenBSD: bdes.c,v 1.13 2003/11/15 00:23:02 tedu Exp $"; #endif #endif /* not lint */ *************** *** 271,277 **** /* * get the key */ ! p = getpass("Enter key: "); /* * copy it, nul-padded, into the key area */ --- 271,278 ---- /* * get the key */ ! if ((p = getpass("Enter key: ")) == NULL) ! err(1, "getpass"); /* * copy it, nul-padded, into the key area */