Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
9a237b4a
Commit
9a237b4a
authored
Jul 27, 2004
by
Leigh B. Stoller
Browse files
Oops, EventSendWarn() was calling fatal(). Not suposed to do that, but
return instead.
parent
0c1b9535
Changes
2
Hide whitespace changes
Inline
Side-by-side
event/lib/event.pm
View file @
9a237b4a
...
...
@@ -787,7 +787,7 @@ sub EventSendWarn(@) {
my
$result
=
EventSend
(
@tuple
);
if
(
!
$result
)
{
Event
Fatal
("
Event Send failed
");
Event
Warn
("
Event Send failed
");
}
return
$result
;
...
...
event/lib/event.pm.tail
View file @
9a237b4a
...
...
@@ -140,7 +140,7 @@ sub EventSendWarn(@) {
my $result = EventSend(@tuple);
if (!$result) {
Event
Fatal
("Event Send failed");
Event
Warn
("Event Send failed");
}
return $result;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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