From owner-cvs-src-old@FreeBSD.ORG Fri Feb 4 16:42:14 2011 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 64E9E106566C for ; Fri, 4 Feb 2011 16:42:14 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 509AC8FC16 for ; Fri, 4 Feb 2011 16:42:14 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p14GgEPg016812 for ; Fri, 4 Feb 2011 16:42:14 GMT (envelope-from jilles@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p14GgEl3016811 for cvs-src-old@freebsd.org; Fri, 4 Feb 2011 16:42:14 GMT (envelope-from jilles@repoman.freebsd.org) Message-Id: <201102041642.p14GgEl3016811@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jilles@repoman.freebsd.org using -f From: Jilles Tjoelker Date: Fri, 4 Feb 2011 16:40:50 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin/kill kill.c src/bin/pkill pkill.c src/bin/sh trap.c src/lib/libc/gen psignal.3 siglist.c src/usr.bin/killall killall.c src/usr.bin/truss main.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Feb 2011 16:42:14 -0000 jilles 2011-02-04 16:40:50 UTC FreeBSD src repository Modified files: bin/kill kill.c bin/pkill pkill.c bin/sh trap.c lib/libc/gen psignal.3 siglist.c usr.bin/killall killall.c usr.bin/truss main.c Log: SVN rev 218285 on 2011-02-04 16:40:50Z by jilles Make sys_signame upper case. This matches the constants from with 'SIG' removed, which POSIX requires kill and trap to accept and 'kill -l' to write. 'kill -l', 'trap', 'trap -l' output is now upper case. In Turkish locales, signal names with an upper case 'I' are now accepted, while signal names with a lower case 'i' are no longer accepted, and the output of 'killall -l' now contains proper capital 'I' without dot instead of a dotted capital 'I'. Revision Changes Path 1.24 +1 -1 src/bin/kill/kill.c 1.12 +1 -1 src/bin/pkill/pkill.c 1.44 +3 -3 src/bin/sh/trap.c 1.18 +2 -2 src/lib/libc/gen/psignal.3 1.7 +31 -31 src/lib/libc/gen/siglist.c 1.38 +1 -1 src/usr.bin/killall/killall.c 1.59 +1 -1 src/usr.bin/truss/main.c