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
5c9a6444
Commit
5c9a6444
authored
Jan 20, 2001
by
Mac Newbold
Browse files
Fixed same regular expression problem as in postparse.
parent
fdd7c11e
Changes
1
Hide whitespace changes
Inline
Side-by-side
tbsetup/ir/assign_wrapper.in
View file @
5c9a6444
...
...
@@ -120,7 +120,7 @@ if ($@) {
}
foreach
(
split
("
\n
",
$raw
))
{
(
$lan
,
$nodes_raw
,
$bw
,
$delay
,
$loss
,
$links_raw
)
=
/([^ ]+) "([^\"]+)" ([^ ]+) ([^ ]+) ([^ ]+)[ \t]+(.*)$/
;
/([^ ]+) "([^\"]+)" ([^ ]+) ([^ ]+) ([^ ]+)
(?:
[ \t]+(.*)
)?
$/
;
$nodes_tmp
=
[]
;
foreach
(
split
("
",
$nodes_raw
))
{
push
(
@$nodes_tmp
,
$_
);
...
...
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