Module Name:    src
Committed By:   christos
Date:           Thu Jun  3 18:52:46 UTC 2010

Modified Files:
        src/external/bsd/atf/dist/atf-sh: atf.footer.subr

Log Message:
Use proper signal names. Prefixing them with "SIG" is an extension which
is not supported by posix shells.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r1.2 src/external/bsd/atf/dist/atf-sh/atf.footer.subr

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/atf/dist/atf-sh/atf.footer.subr
diff -u src/external/bsd/atf/dist/atf-sh/atf.footer.subr:1.1.1.2 src/external/bsd/atf/dist/atf-sh/atf.footer.subr:1.2
--- src/external/bsd/atf/dist/atf-sh/atf.footer.subr:1.1.1.2	Sat May  8 04:05:23 2010
+++ src/external/bsd/atf/dist/atf-sh/atf.footer.subr	Thu Jun  3 14:52:46 2010
@@ -535,7 +535,7 @@
 #
 _atf_sighup_handler()
 {
-    Held_Signals="${Held_Signals} SIGHUP"
+    Held_Signals="${Held_Signals} HUP"
 }
 
 #
@@ -546,7 +546,7 @@
 #
 _atf_sigint_handler()
 {
-    Held_Signals="${Held_Signals} SIGINT"
+    Held_Signals="${Held_Signals} INT"
 }
 
 #
@@ -557,7 +557,7 @@
 #
 _atf_sigterm_handler()
 {
-    Held_Signals="${Held_Signals} SIGTERM"
+    Held_Signals="${Held_Signals} TERM"
 }
 
 #

Reply via email to