Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
e8b93c7c
Commit
e8b93c7c
authored
Aug 22, 2000
by
cyeh%bluemartini.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for bug #44622: perl5.6 vs perl5.005 -w: more anal 5.6 causes errors.
patches by mtakacs@pacbell.net.
parent
2cd9592d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
CGI.pl
CGI.pl
+1
-1
processmail
processmail
+4
-4
No files found.
CGI.pl
View file @
e8b93c7c
...
...
@@ -118,7 +118,7 @@ sub ParseUrlString {
$isnull
{
$name
}
=
1
;
}
}
if
(
defined
%
isnull
)
{
if
(
%
isnull
)
{
foreach
my
$name
(
keys
(
%
isnull
))
{
if
(
!
defined
$f
->
{
$name
})
{
$f
->
{
$name
}
=
""
;
...
...
processmail
View file @
e8b93c7c
...
...
@@ -471,9 +471,9 @@ sub NewProcessOneBug {
for
my
$person
(
@personlist
)
{
$count
++
;
NewProcessOnePerson
(
$person
,
$count
,
\
@headerlist
,
\%
values
,
\%
defmailhead
,
\%
fielddescription
,
$difftext
,
$newcomments
,
$start
,
$id
,
1
);
&
NewProcessOnePerson
(
$person
,
$count
,
\
@headerlist
,
\%
values
,
\%
defmailhead
,
\%
fielddescription
,
$difftext
,
$newcomments
,
$start
,
$id
,
1
);
}
SendSQL
(
"UPDATE bugs SET lastdiffed = '$end', delta_ts = delta_ts "
.
...
...
@@ -510,7 +510,7 @@ sub NewProcessOnePerson ($$\@\%\%\%$$$$) {
foreach
my
$watcher
(
$watcherSet
->
toArray
()
)
{
NewProcessOnePerson
(
DBID_to_name
(
$watcher
),
&
NewProcessOnePerson
(
DBID_to_name
(
$watcher
),
$count
,
\
@headerlist
,
\%
values
,
\%
defmailhead
,
\%
fielddescription
,
$difftext
,
$newcomments
,
$start
,
$id
,
0
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment