Module Name:    src
Committed By:   pooka
Date:           Mon Jul 27 07:31:00 UTC 2015

Modified Files:
        src/lib/librumpuser: rumpuser.c

Log Message:
Print the "halted\n" from previous commit to stdout, not stderr.

The putchar hypercall writes to stdout, so this change restores
the original "functionality" (which was not intended to change).

from gson, via tests


To generate a diff of this commit:
cvs rdiff -u -r1.65 -r1.66 src/lib/librumpuser/rumpuser.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/librumpuser/rumpuser.c
diff -u src/lib/librumpuser/rumpuser.c:1.65 src/lib/librumpuser/rumpuser.c:1.66
--- src/lib/librumpuser/rumpuser.c:1.65	Fri Jul 24 14:11:11 2015
+++ src/lib/librumpuser/rumpuser.c	Mon Jul 27 07:31:00 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: rumpuser.c,v 1.65 2015/07/24 14:11:11 pooka Exp $	*/
+/*	$NetBSD: rumpuser.c,v 1.66 2015/07/27 07:31:00 pooka Exp $	*/
 
 /*
  * Copyright (c) 2007-2010 Antti Kantee.  All Rights Reserved.
@@ -28,7 +28,7 @@
 #include "rumpuser_port.h"
 
 #if !defined(lint)
-__RCSID("$NetBSD: rumpuser.c,v 1.65 2015/07/24 14:11:11 pooka Exp $");
+__RCSID("$NetBSD: rumpuser.c,v 1.66 2015/07/27 07:31:00 pooka Exp $");
 #endif /* !lint */
 
 #include <sys/stat.h>
@@ -232,7 +232,7 @@ __dead void
 rumpuser_exit(int rv)
 {
 
-	fprintf(stderr, "halted\n");
+	printf("halted\n");
 	if (rv == RUMPUSER_PANIC)
 		abort();
 	else

Reply via email to