git: 7a50c3f63f54 - stable/14 - stand: Kill commented out line

From: Warner Losh <imp_at_FreeBSD.org>
Date: Thu, 01 Aug 2024 14:50:26 UTC
The branch stable/14 has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=7a50c3f63f542ba7a9b2d705591c6dbd47ad31d0

commit 7a50c3f63f542ba7a9b2d705591c6dbd47ad31d0
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2024-07-29 22:56:48 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2024-08-01 14:49:54 +0000

    stand: Kill commented out line
    
    This line is no longer needed as fallback, and should have been deleted
    in 7870a52598ad8 instead of commented out, but 26 years later, I have a
    high degree of confidence that old change was right and we won't need
    this line as a fallback.
    
    Sponsored by:           Netflix
    Reviewed by:            kevans, jhb
    Differential Revision:  https://reviews.freebsd.org/D45880
    
    (cherry picked from commit 65300ca729452f62c201baedcbb4a67f2afc5ed5)
---
 stand/common/newvers.sh | 1 -
 1 file changed, 1 deletion(-)

diff --git a/stand/common/newvers.sh b/stand/common/newvers.sh
index 916fecb98334..369a1c7c76df 100755
--- a/stand/common/newvers.sh
+++ b/stand/common/newvers.sh
@@ -44,7 +44,6 @@ shift $((OPTIND - 1))
 
 LC_ALL=C; export LC_ALL
 u=${USER-root} h=${HOSTNAME-`hostname`} t=`date`
-#r=`head -n 6 $1 | tail -n 1 | awk -F: ' { print $1 } '`
 r=`awk -F: ' /^[0-9]\.[0-9]+:/ { print $1; exit }' $1`
 
 bootprog_info="FreeBSD/${3} ${2}, Revision ${r}\\n"