diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-07-09 04:05:08 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-07-09 04:05:08 +0000 |
commit | 3fed53c00538c315457a6006a26861a10a4d5fe3 (patch) | |
tree | 4523e8399b545d2b1649db5b62cbb706a0306830 | |
parent | e4bb8c185239aca8ebe2214d405d06cde819775d (diff) |
\n after clnt_sperrno()
-rw-r--r-- | usr.bin/rup/rup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/rup/rup.c b/usr.bin/rup/rup.c index 543e6a00548..8333e7bb068 100644 --- a/usr.bin/rup/rup.c +++ b/usr.bin/rup/rup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rup.c,v 1.7 1997/06/20 10:05:56 deraadt Exp $ */ +/* $OpenBSD: rup.c,v 1.8 1997/07/09 04:05:07 deraadt Exp $ */ /*- * Copyright (c) 1993, John Brezak @@ -34,7 +34,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: rup.c,v 1.7 1997/06/20 10:05:56 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: rup.c,v 1.8 1997/07/09 04:05:07 deraadt Exp $"; #endif /* not lint */ #include <stdio.h> @@ -285,7 +285,7 @@ allhosts() clnt_stat = clnt_broadcast(RSTATPROG, RSTATVERS_TIME, RSTATPROC_STATS, xdr_void, NULL, xdr_statstime, (char *)&host_stat, rstat_reply); if (clnt_stat != RPC_SUCCESS && clnt_stat != RPC_TIMEDOUT) { - fprintf(stderr, "%s: %s", __progname, clnt_sperrno(clnt_stat)); + fprintf(stderr, "%s: %s\n", __progname, clnt_sperrno(clnt_stat)); exit(1); } |