aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/patch/util.c
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2013-01-29 20:05:16 +0000
committerXin LI <delphij@FreeBSD.org>2013-01-29 20:05:16 +0000
commite56ef7d3586d1dea57990c7d94e260b54423ffc3 (patch)
tree4226cf563e0a8e96a30ae842b880573dcb5ed915 /usr.bin/patch/util.c
parente38120d46f5ff8f3aded33d93c979b179e3c962a (diff)
Notes
Diffstat (limited to 'usr.bin/patch/util.c')
-rw-r--r--usr.bin/patch/util.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/usr.bin/patch/util.c b/usr.bin/patch/util.c
index 90f2f9a01d74..3895b2c92cec 100644
--- a/usr.bin/patch/util.c
+++ b/usr.bin/patch/util.c
@@ -1,6 +1,4 @@
-/* $FreeBSD$ */
/*-
- *
* Copyright 1986, Larry Wall
*
* Redistribution and use in source and binary forms, with or without
@@ -25,8 +23,8 @@
* -C option added in 1998, original code by Marc Espie, based on FreeBSD
* behaviour
*
- * $OpenBSD: util.c,v 1.32 2006/03/11 19:41:30 otto Exp $
- * $DragonFly: src/usr.bin/patch/util.c,v 1.9 2007/09/29 23:11:10 swildner Exp $
+ * $OpenBSD: util.c,v 1.35 2010/07/24 01:10:12 ray Exp $
+ * $FreeBSD$
*/
#include <sys/param.h>
@@ -212,9 +210,9 @@ say(const char *fmt, ...)
va_list ap;
va_start(ap, fmt);
- vfprintf(stderr, fmt, ap);
+ vfprintf(stdout, fmt, ap);
va_end(ap);
- fflush(stderr);
+ fflush(stdout);
}
/*