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
59601e95
Commit
59601e95
authored
Nov 29, 2001
by
Leigh B. Stoller
Browse files
Minor fix to Rob's last change; Use "ne" instead of "==" to compare
strings.
parent
82bd80a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
tbsetup/assign_wrapper.in
View file @
59601e95
...
...
@@ -999,7 +999,7 @@ sub swapok {
my
(
$control_iface
)
=
$result
->
fetchrow_array
;
$result
->
finish
;
return
((
$portA
!=
$control_iface
)
&&
(
$portB
!=
$control_iface
));
return
((
$portA
ne
$control_iface
)
&&
(
$portB
ne
$control_iface
));
};
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