do not print extra \n
authorderaadt <deraadt@openbsd.org>
Sun, 9 Feb 1997 03:35:23 +0000 (03:35 +0000)
committerderaadt <deraadt@openbsd.org>
Sun, 9 Feb 1997 03:35:23 +0000 (03:35 +0000)
lib/libc/rpc/clnt_perror.c

index 1465634..b6514b1 100644 (file)
@@ -28,7 +28,7 @@
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: clnt_perror.c,v 1.6 1997/01/21 06:07:22 millert Exp $";
+static char *rcsid = "$OpenBSD: clnt_perror.c,v 1.7 1997/02/09 03:35:23 deraadt Exp $";
 #endif /* LIBC_SCCS and not lint */
 
 /*
@@ -230,7 +230,7 @@ void
 clnt_pcreateerror(s)
        char *s;
 {
-       (void) fprintf(stderr, "%s\n", clnt_spcreateerror(s));
+       (void) fprintf(stderr, "%s", clnt_spcreateerror(s));
 }
 
 static const char *const auth_errlist[] = {