=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/getconf/getconf.c,v retrieving revision 1.1 retrieving revision 1.2 diff -c -r1.1 -r1.2 *** src/usr.bin/getconf/getconf.c 1995/10/18 08:45:19 1.1 --- src/usr.bin/getconf/getconf.c 1996/05/04 09:15:06 1.2 *************** *** 1,7 **** ! /* ! * Copyright (c) 1994 Winning Strategies, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: --- 1,10 ---- ! /*- ! * Copyright (c) 1996 The NetBSD Foundation, Inc. * All rights reserved. * + * This code is derived from software contributed to The NetBSD Foundation + * by J.T. Conklin. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: *************** *** 36,42 **** */ #ifndef lint ! static char rcsid[] = "$Id: getconf.c,v 1.1 1995/10/18 08:45:19 deraadt Exp $"; #endif /* not lint */ #include --- 39,45 ---- */ #ifndef lint ! static char rcsid[] = "$Id: getconf.c,v 1.2 1996/05/04 09:15:06 deraadt Exp $"; #endif /* not lint */ #include *************** *** 167,173 **** break; } if (cp->name == NULL) { ! err(1, "%s: unknown variable", *argv); /* NOTREACHED */ } --- 170,176 ---- break; } if (cp->name == NULL) { ! errx(1, "%s: unknown variable", *argv); /* NOTREACHED */ }