From b11ecdd6d084d206b7181cf3495225968755aab8 Mon Sep 17 00:00:00 2001 From: Bill Fenner Date: Fri, 1 Nov 1996 17:23:41 +0000 Subject: [PATCH] Use fprintf(stderr,) instead of msgtail() so it works for restore as well. --- sbin/dump/dumprmt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sbin/dump/dumprmt.c b/sbin/dump/dumprmt.c index 27008efb7109..d7d59a49deba 100644 --- a/sbin/dump/dumprmt.c +++ b/sbin/dump/dumprmt.c @@ -174,6 +174,7 @@ rmtgetconn() msg("login to %s as %s failed.\n", rmtpeer, tuser); return; } + (void)fprintf(stderr, "Connection to %s established.\n", rmtpeer); size = ntrec * TP_BSIZE; if (size > 60 * 1024) /* XXX */ size = 60 * 1024;