summaryrefslogtreecommitdiff
path: root/gnu/usr.bin
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2003-10-01 17:58:18 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2003-10-01 17:58:18 +0000
commit80f0cde35cb1355e7c9ebc83a11ed5c19ed02096 (patch)
treebc7e2b38d0996a6ec753088d08901e35377d2192 /gnu/usr.bin
parent4ded5c87454048718d56e7678d7227266529c3f4 (diff)
Don't use the contents of ~/.signature for the Organization field.
Closes PR 3499; deraadt@ OK
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r--gnu/usr.bin/sendbug/sendbug.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/gnu/usr.bin/sendbug/sendbug.sh b/gnu/usr.bin/sendbug/sendbug.sh
index 17dcea9af29..33d40df1def 100644
--- a/gnu/usr.bin/sendbug/sendbug.sh
+++ b/gnu/usr.bin/sendbug/sendbug.sh
@@ -21,7 +21,7 @@
# along with GNU GNATS; see the file COPYING. If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
#
-# $OpenBSD: sendbug.sh,v 1.14 2003/03/21 21:32:47 david Exp $
+# $OpenBSD: sendbug.sh,v 1.15 2003/10/01 17:58:17 millert Exp $
# The version of this sendbug.
VERSION=3.97
@@ -155,8 +155,6 @@ if [ -n "$ORGANIZATION" ]; then
else
if [ -f $HOME/.organization ]; then
ORGANIZATION="`cat $HOME/.organization`"
- elif [ -f $HOME/.signature ]; then
- ORGANIZATION="`cat $HOME/.signature`"
elif [ -n "$DEFAULT_ORGANIZATION" ]; then
ORGANIZATION="$DEFAULT_ORGANIZATION"
fi