From 45f86ca1ca712857e6f84288cf818ce5707fc345 Mon Sep 17 00:00:00 2001
From: Dan McGee <dan@archlinux.org>
Date: Fri, 21 Oct 2011 10:38:02 -0500
Subject: Use stderr as output stream for pm_printf()

This matches what we now do in our backend callback function- all
debug/info/warning/error/etc. messages should be on stderr. These are
all the messages with a "warning:" or other type prefix, so does not
affect general pacman output.

This should fix the output confusion noted in FS#26555.

Signed-off-by: Dan McGee <dan@archlinux.org>
---
 src/pacman/util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src')

diff --git a/src/pacman/util.c b/src/pacman/util.c
index 60e2914d..1ca9b4d6 100644
--- a/src/pacman/util.c
+++ b/src/pacman/util.c
@@ -1417,7 +1417,7 @@ int pm_printf(alpm_loglevel_t level, const char *format, ...)
 
 	/* print the message using va_arg list */
 	va_start(args, format);
-	ret = pm_vfprintf(stdout, level, format, args);
+	ret = pm_vfprintf(stderr, level, format, args);
 	va_end(args);
 
 	return ret;
-- 
cgit v1.2.3-2-g168b