Skip to content
GitLab
Menu
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
68b4c497
Commit
68b4c497
authored
Jul 14, 2009
by
Leigh B. Stoller
Browse files
Fix uninitialized variable error.
parent
e8e6ef96
Changes
1
Hide whitespace changes
Inline
Side-by-side
tbsetup/snmpit.proxyv2.in
View file @
68b4c497
...
...
@@ -205,7 +205,8 @@ SWITCH: for ($op) {
}
# Update with output for log message if sent.
AddAuditInfo
("
message
",
"
$op
\n\n
"
.
Dumper
(
$args
)
.
"
\n\n
$output
\n
");
AddAuditInfo
("
message
",
"
$op
\n\n
"
.
Dumper
(
$args
)
.
(
defined
(
$output
)
?
"
\n\n
$output
\n
"
:
"
\n
"));
#
# Terminate the log capture so that we can print the response to STDOUT
...
...
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