summaryrefslogtreecommitdiffstats
path: root/patches/ltp-full-20090131/ltp-full-20090131-forward-error-messages-to-stderr.diff
blob: 6acd541214ade4ba64e9da360750ac47d4377279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Subject: Forward error messages to stderr
From: Juergen Beisert <jbe@pengutronix.de>

Unsure if I understand the code in the right manner, but
other error messages are also forwarded to stderr instead of stdout.

Signed-off-by: Juergen Beisert <jbe@pengutronix.de>

---
 pan/pan.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Index: ltp-full-20090131/pan/pan.c
===================================================================
--- ltp-full-20090131.orig/pan/pan.c
+++ ltp-full-20090131/pan/pan.c
@@ -237,9 +237,9 @@ main(int argc, char **argv)
 	    break;
 	case 't':	/* run_time to run */
 	    ret = sscanf(optarg, "%d%c", &run_time, &modifier);
-            if (ret == 0) { printf("Need proper time input: ####x where"
+            if (ret == 0) { fprintf(stderr, "Need proper time input: ####x where"
                                     "x is one of s,m,h,d\n"); break; }
-            else if (ret == 1) { printf("Only got a time value of %d "
+            else if (ret == 1) { fprintf(stderr, "Only got a time value of %d "
                                  "modifiers need to come immediately after #"
                                  " assuming %c\n", run_time, modifier); }
             else
@@ -251,7 +251,7 @@ main(int argc, char **argv)
                   case 'h': run_time = run_time * 60 * 60; break; 
                   case 'd': run_time = run_time * 60 * 60 * 24; break;
                   default: 
-                     printf("Invalid time modifier, try: s|h|m|d\n"); exit(-1);
+                     fprintf(stderr, "Invalid time modifier, try: s|h|m|d\n"); exit(-1);
                }
 	       if (!quiet_mode)
                   printf("PAN will run for %d seconds\n", run_time);