diff options
author | jkh <jkh@FreeBSD.org> | 1997-09-09 16:27:50 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1997-09-09 16:27:50 +0000 |
commit | 8c6164b30902bcf71fcaddfead31418edf9fed25 (patch) | |
tree | f4ce49bf28e7c27c0fdfe94a1fb46d37c7c9c9a7 /usr.sbin/sade/msg.c | |
parent | 55f821d874ff48b1204d6a0140bbefec0aa53e4d (diff) | |
download | FreeBSD-src-8c6164b30902bcf71fcaddfead31418edf9fed25.zip FreeBSD-src-8c6164b30902bcf71fcaddfead31418edf9fed25.tar.gz |
Eliminate an obviously redundant message title.
Diffstat (limited to 'usr.sbin/sade/msg.c')
-rw-r--r-- | usr.sbin/sade/msg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/sade/msg.c b/usr.sbin/sade/msg.c index fe49f2f..6da5398 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.44 1997/02/22 14:12:10 peter Exp $ + * $Id: msg.c,v 1.45 1997/04/20 16:46:35 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -214,7 +214,7 @@ msgNotify(char *fmt, ...) if (isDebug()) msgDebug("Notify: %s\n", errstr); dialog_clear_norefresh(); - dialog_msgbox("Information Dialog", errstr, -1, -1, 0); + dialog_msgbox(" ", errstr, -1, -1, 0); } /* Put up a message in a popup yes/no box and return 1 for YES, 0 for NO */ @@ -301,7 +301,7 @@ msgWeHaveOutput(char *fmt, ...) use_helpfile(NULL); msgDebug("Notify: %s\n", errstr); dialog_clear_norefresh(); - dialog_msgbox("Information Dialog", errstr, -1, -1, 0); + dialog_msgbox(" ", errstr, -1, -1, 0); } /* Simple versions of msgConfirm() and msgNotify() for calling from scripts */ |