diff options
author | phk <phk@FreeBSD.org> | 1995-05-20 19:12:13 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-05-20 19:12:13 +0000 |
commit | 8874835086bd5b4560192f88191aa557a445702b (patch) | |
tree | 6a0a6d72ea95ef176dd4fad790e966dec9a8849e /usr.sbin/sade/msg.c | |
parent | 7ee584e87b77288741d4f89ccd93c8cdfd0e6c87 (diff) | |
download | FreeBSD-src-8874835086bd5b4560192f88191aa557a445702b.zip FreeBSD-src-8874835086bd5b4560192f88191aa557a445702b.tar.gz |
Change vsystem to know that the shell is crunched in.
Sanitize a couple of messages.
Diffstat (limited to 'usr.sbin/sade/msg.c')
-rw-r--r-- | usr.sbin/sade/msg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sade/msg.c b/usr.sbin/sade/msg.c index 31ec20c..c9b3e20 100644 --- a/usr.sbin/sade/msg.c +++ b/usr.sbin/sade/msg.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: msg.c,v 1.19 1995/05/20 13:24:34 jkh Exp $ + * $Id: msg.c,v 1.20 1995/05/20 14:05:31 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -88,7 +88,7 @@ msgInfo(char *fmt, ...) attrset(attrs); refresh(); if (OnVTY) { - msgDebug("Informational message `%s'\n", errstr); + msgDebug("Information: `%s'\n", errstr); msgInfo(NULL); } free(errstr); |