aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/xawtv/xawtv-3.95/sys_siglist.patch
blob: f97b0bf4923e276064855e94ec1ac1d1ba77660b (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
38
39
40
41
42
43
44
45
46
47
Index: xawtv-3.95/console/fbtools.c
===================================================================
--- xawtv-3.95.orig/console/fbtools.c	2011-02-26 22:38:35.406698306 +0100
+++ xawtv-3.95/console/fbtools.c	2011-02-26 22:39:48.986803306 +0100
@@ -534,6 +534,6 @@
 
     /* cleanup */
     fb_cleanup();
-    fprintf(stderr,"Oops: %s\n",sys_siglist[termsig]);
+    fprintf(stderr,"Oops: %s\n", strsignal(termsig));
     exit(42);
 }
Index: xawtv-3.95/console/record.c
===================================================================
--- xawtv-3.95.orig/console/record.c	2003-04-03 12:51:00.000000000 +0200
+++ xawtv-3.95/console/record.c	2011-02-26 22:39:34.836398305 +0100
@@ -428,7 +428,7 @@
 {
     if (verbose)
 	fprintf(stderr,"\n%s - exiting\n",
-		sys_siglist[signal]);
+		strsignal(signal));
     stop = 1;
 }
 
Index: xawtv-3.95/x11/rootv.c
===================================================================
--- xawtv-3.95.orig/x11/rootv.c	2003-02-14 15:14:08.000000000 +0100
+++ xawtv-3.95/x11/rootv.c	2011-02-26 22:38:35.810233306 +0100
@@ -133,7 +133,7 @@
     termsig = signal;
     if (verbose)
 	fprintf(stderr,"received signal %d [%s]\n",
-		termsig,sys_siglist[termsig]);
+		termsig, strsignal(termsig));
 }
 
 static void usage(FILE *fp)
@@ -423,7 +423,7 @@
     }
     if (verbose && termsig)
 	fprintf(stderr,"exiting on signal %d [%s]\n",
-		termsig,sys_siglist[termsig]);
+		termsig, strsignal(termsig));
     if (do_mute && have_mute)
 	XvSetPortAttribute(dpy,port,XV_MUTE,1);
     XvStopVideo(dpy,port,win);