diff options
author | Hakan Olsson <ho@cvs.openbsd.org> | 2000-12-06 14:06:17 +0000 |
---|---|---|
committer | Hakan Olsson <ho@cvs.openbsd.org> | 2000-12-06 14:06:17 +0000 |
commit | 6643e21d4fc495a33c5dbf705fd1efef6faca9a2 (patch) | |
tree | ac6c944e5f2b153c60b0cc9da88728a8f6e6f9f9 | |
parent | c70f3f9f0bbbc52b0552703642baf6b5d4ea3975 (diff) |
Add a 'saving modified kernel' message. (deraadt@ ok)
-rw-r--r-- | usr.sbin/config/ukc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/config/ukc.c b/usr.sbin/config/ukc.c index 92c66e74a70..c8e29d55c43 100644 --- a/usr.sbin/config/ukc.c +++ b/usr.sbin/config/ukc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ukc.c,v 1.2 1999/10/16 13:13:27 aaron Exp $ */ +/* $OpenBSD: ukc.c,v 1.3 2000/12/06 14:06:16 ho Exp $ */ /* * Copyright (c) 1999 Mats O Jansson. All rights reserved. @@ -30,7 +30,7 @@ */ #ifndef LINT -static char rcsid[] = "$OpenBSD: ukc.c,v 1.2 1999/10/16 13:13:27 aaron Exp $"; +static char rcsid[] = "$OpenBSD: ukc.c,v 1.3 2000/12/06 14:06:16 ho Exp $"; #endif #include <sys/types.h> @@ -157,6 +157,7 @@ WARNING the commands add and change might not work.\n"); } if (outfile == NULL) outfile = file; + printf ("Saving modified kernel.\n"); savekernel(outfile); } |