From 5ded76c09732486de05b9dc7617d3808e1ded1b5 Mon Sep 17 00:00:00 2001 From: Alexey Zelkin Date: Tue, 21 Dec 1999 17:34:21 +0000 Subject: [PATCH] s/freebsd/FreeBSD --- en/cgi/query-pr.cgi | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/en/cgi/query-pr.cgi b/en/cgi/query-pr.cgi index c28bdeb632..9dcc0742c3 100755 --- a/en/cgi/query-pr.cgi +++ b/en/cgi/query-pr.cgi @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $FreeBSD$ +# $FreeBSD: www/en/cgi/query-pr.cgi,v 1.17 1999/09/06 07:02:40 peter Exp $ $ENV{'PATH'} = "/bin:/usr/bin:/usr/sbin:/sbin:/usr/local/bin"; @@ -98,7 +98,7 @@ while() { if ($inhdr && /^$/) { $from = $replyto if ($replyto); $email = $from; - $email .= '@freebsd.org' unless ($email =~ /@/); + $email .= '@FreeBSD.org' unless ($email =~ /@/); $inhdr = 0; } @@ -106,7 +106,7 @@ while() { $_ = &getline($_); s/\(.*\)//; # remove personal name s/\s+//g; - $_ = $_ . '@freebsd.org' if !/@/; + $_ = $_ . '@FreeBSD.org' if !/@/; $_ = '>Responsible:' . $_ . ''; $html_fixup = 0; } @@ -160,7 +160,7 @@ print ""; $origsyn =~ s/[^a-zA-Z+.@-]/"%" . sprintf("%02X", unpack("C", $&))/eg; $email =~ s/[^a-zA-Z+.@-]/"%" . sprintf("%02X", unpack("C", $&))/eg; -print "Submit Followup\n"; +print "Submit Followup\n"; print &html_footer; @@ -179,7 +179,7 @@ sub getline sub cvsweb { local($file) = shift; $file =~ s/[,.;]$//; - return 'http://www.freebsd.org/cgi/cvsweb.cgi/' . $file; + return 'http://www.FreeBSD.org/cgi/cvsweb.cgi/' . $file; }