mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Remove "support" class since we don't provide support services to users.
This commit is contained in:
parent
a78e048ac2
commit
53b27391b0
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=26502
2 changed files with 4 additions and 4 deletions
|
@ -127,7 +127,7 @@ at runtime.")
|
|||
(defconst send-pr::fields
|
||||
(` (("Category" send-pr::set-categories
|
||||
(, (or (gnats::get-config "DEFAULT_CATEGORY") nil)) enum)
|
||||
("Class" (("sw-bug") ("doc-bug") ("change-request") ("support"))
|
||||
("Class" (("sw-bug") ("doc-bug") ("change-request"))
|
||||
(, (or (gnats::get-config "DEFAULT_CONFIDENTIAL") 0)) enum)
|
||||
("Confidential" (("yes") ("no"))
|
||||
(, (or (gnats::get-config "DEFAULT_CONFIDENTIAL") 1)) enum)
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
# along with GNU GNATS; see the file COPYING. If not, write to
|
||||
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
#
|
||||
# $Id$
|
||||
# $Id: send-pr.sh,v 1.8 1997/02/22 15:48:14 peter Exp $
|
||||
|
||||
# The version of this send-pr.
|
||||
VERSION=3.2
|
||||
|
@ -244,7 +244,7 @@ CONFIDENTIAL_C='<[ yes | no ] (one line)>'
|
|||
SYNOPSIS_C='<Synopsis of the problem (one line)>'
|
||||
SEVERITY_C='<[ non-critical | serious | critical ] (one line)>'
|
||||
PRIORITY_C='<[ low | medium | high ] (one line)>'
|
||||
CLASS_C='<[ sw-bug | doc-bug | change-request | support ] (one line)>'
|
||||
CLASS_C='<[ sw-bug | doc-bug | change-request ] (one line)>'
|
||||
RELEASE_C='<Release number or tag (one line)>'
|
||||
ENVIRONMENT_C='<Relevant environment information (multiple lines)>'
|
||||
DESCRIPTION_C='<Precise description of the problem (multiple lines)>'
|
||||
|
@ -452,7 +452,7 @@ while [ -z "$REQUEST_ID" ]; do
|
|||
PATTERN=">Class:"
|
||||
CLASS=`eval sed -n -e "\"$SED_CMD\"" $TEMP`
|
||||
case "$CLASS" in
|
||||
""|sw-bug|doc-bug|change-request|support) CNT=`expr $CNT + 1` ;;
|
||||
""|sw-bug|doc-bug|change-request) CNT=`expr $CNT + 1` ;;
|
||||
*) echo "$COMMAND: \`$CLASS' is not a valid value for \`Class'."
|
||||
esac
|
||||
|
||||
|
|
Loading…
Reference in a new issue