diff options
author | hunt <hunt> | 2005-08-24 16:29:46 +0000 |
---|---|---|
committer | hunt <hunt> | 2005-08-24 16:29:46 +0000 |
commit | d072ec9d384f4f6072317e530b42a834f0982921 (patch) | |
tree | 4a2311a86041dc7a37152fb38bc0bd5785df6e63 /runtime/io.c | |
parent | b8711ce4bdeca3f5d1164e9a16c25be787a6625d (diff) | |
download | systemtap-steved-d072ec9d384f4f6072317e530b42a834f0982921.tar.gz systemtap-steved-d072ec9d384f4f6072317e530b42a834f0982921.tar.xz systemtap-steved-d072ec9d384f4f6072317e530b42a834f0982921.zip |
2005-08-24 Martin Hunt <hunt@redhat.com>
* io.c (_stp_vlog): Send warnings and errors to STP_OOB_DATA.
Diffstat (limited to 'runtime/io.c')
-rw-r--r-- | runtime/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/io.c b/runtime/io.c index f4f042a8..1e3d51e4 100644 --- a/runtime/io.c +++ b/runtime/io.c @@ -57,12 +57,12 @@ static void _stp_vlog (enum code type, char *func, int line, const char *fmt, va #ifdef STP_RELAYFS if (type != DBUG) - _stp_write(STP_REALTIME_DATA, buf, start + num + 1); + _stp_write(STP_OOB_DATA, buf, start + num + 1); _stp_string_cat_cstr(_stp_stdout,buf); _stp_print_flush(); #else if (type != DBUG) - _stp_write(STP_REALTIME_DATA, buf, start + num + 1); + _stp_write(STP_OOB_DATA, buf, start + num + 1); else { _stp_string_cat_cstr(_stp_stdout,buf); _stp_print_flush(); |