Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Oct 2012 03:41:20 +0000 (UTC)
From:      Eitan Adler <eadler@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r241857 - head/gnu/usr.bin/send-pr
Message-ID:  <201210220341.q9M3fKSU024078@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: eadler
Date: Mon Oct 22 03:41:19 2012
New Revision: 241857
URL: http://svn.freebsd.org/changeset/base/241857

Log:
  Add support for the "&" character in usernames.
  
  Charlie & finally has his last name.
  
  PR:		gnu/37910
  Submitted by:	Harry Newton <harry_newton@telinco.co.uk>
  Approved by:	cperciva
  MFC after:	1 week

Modified:
  head/gnu/usr.bin/send-pr/send-pr.sh

Modified: head/gnu/usr.bin/send-pr/send-pr.sh
==============================================================================
--- head/gnu/usr.bin/send-pr/send-pr.sh	Mon Oct 22 03:41:14 2012	(r241856)
+++ head/gnu/usr.bin/send-pr/send-pr.sh	Mon Oct 22 03:41:19 2012	(r241857)
@@ -23,7 +23,7 @@
 # $FreeBSD$
 
 # The version of this send-pr.
-VERSION=3.113
+VERSION=3.114
 
 # The submitter-id for your site.
 # "current-users" is the only allowable value for FreeBSD.
@@ -92,11 +92,16 @@ elif [ -f $HOME/.fullname ]; then
   ORIGINATOR="`sed -e '1q' $HOME/.fullname`"
 else
   PTEMP=`mktemp -t p` || exit 1
+  PTEMP2=`mktemp -t p` || exit 1
   # Must use temp file due to incompatibilities in quoting behavior
   # and to protect shell metacharacters in the expansion of $LOGNAME
-  $PW usershow $LOGNAME | awk -F: '{ print $8 }' | sed -e 's/,.*//' > $PTEMP
+  $ECHON1 $LOGNAME | awk '{print toupper(substr($1,1,1))substr($1,2)}' > $PTEMP2
+  ICLOGNAME="`cat $PTEMP2`"
+  $PW usershow $LOGNAME | awk -F: '{ print $8 }'    \
+			| sed -e "s/\&/$ICLOGNAME/" \
+			| sed -e 's/,.*//' > $PTEMP
   ORIGINATOR="`cat $PTEMP`"
-  rm -f $PTEMP
+  rm -f "$PTEMP" "$PTEMP2"
 fi
 
 FROM="$ORIGINATOR <$LOGNAME>"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210220341.q9M3fKSU024078>