aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin/send-pr
diff options
context:
space:
mode:
authorSteve Price <steve@FreeBSD.org>2000-10-29 22:11:39 +0000
committerSteve Price <steve@FreeBSD.org>2000-10-29 22:11:39 +0000
commitfa99586d3a144ccf3d8079df7803df17c689b335 (patch)
tree497500a424df01fee5221de4b77887ff177fb405 /gnu/usr.bin/send-pr
parent0da088c1e6654ce68a694cadc7cb1106710aba05 (diff)
Notes
Diffstat (limited to 'gnu/usr.bin/send-pr')
-rw-r--r--gnu/usr.bin/send-pr/send-pr-el.in2
-rw-r--r--gnu/usr.bin/send-pr/send-pr.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/send-pr/send-pr-el.in b/gnu/usr.bin/send-pr/send-pr-el.in
index b32e06fc7fe4b..8195ecbd0dd43 100644
--- a/gnu/usr.bin/send-pr/send-pr-el.in
+++ b/gnu/usr.bin/send-pr/send-pr-el.in
@@ -156,7 +156,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"))
+ ("Class" (("sw-bug") ("doc-bug") ("change-request") ("update") ("maintainer-update"))
(, (or (gnats::get-config "DEFAULT_CLASS") 0)) enum)
("Confidential" (("yes") ("no"))
(, (or (gnats::get-config "DEFAULT_CONFIDENTIAL") 1)) enum)
diff --git a/gnu/usr.bin/send-pr/send-pr.sh b/gnu/usr.bin/send-pr/send-pr.sh
index 333f86a6e99a4..e15efe7c5260b 100644
--- a/gnu/usr.bin/send-pr/send-pr.sh
+++ b/gnu/usr.bin/send-pr/send-pr.sh
@@ -230,7 +230,7 @@ if [ -z "$SEVERITY_C" ]; then
fi
PRIORITY_C='<[ low | medium | high ] (one line)>'
CATEGORY_C='<choose from the list of categories above (one line)>'
-CLASS_C='<[ sw-bug | doc-bug | change-request ] (one line)>'
+CLASS_C='<[ sw-bug | doc-bug | change-request | update | maintainer-update ] (one line)>'
RELEASE_C='<release number or tag (one line)>'
ENVIRONMENT_C='<machine, os, target, libraries (multiple lines)>'
DESCRIPTION_C='<precise description of the problem (multiple lines)>'
@@ -426,7 +426,7 @@ while true; do
PATTERN=">Class:"
CLASS=`eval sed -n -e "\"/$PATTERN/$SED_CMD\"" $TEMP`
case "$CLASS" in
- ""|sw-bug|doc-bug|change-request) CNT=`expr $CNT + 1` ;;
+ ""|sw-bug|doc-bug|change-request|update|maintainer-update) CNT=`expr $CNT + 1` ;;
*) echo "$COMMAND: \`$CLASS' is not a valid value for \`Class'."
esac
#