Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emulab
emulab-devel
Commits
ade097a5
Commit
ade097a5
authored
Jun 30, 2005
by
Timothy Stack
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't prefix the command with 'exec' until we figure out a way to make
it work with startup commands.
parent
58506ec8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
event/program-agent/program-agent.c
event/program-agent/program-agent.c
+2
-2
No files found.
event/program-agent/program-agent.c
View file @
ade097a5
...
...
@@ -1070,7 +1070,7 @@ set_program(struct proginfo *pinfo, char *args)
pinfo
->
cmdline
=
NULL
;
}
}
asprintf
(
&
pinfo
->
cmdline
,
"
exec
%s"
,
value
);
asprintf
(
&
pinfo
->
cmdline
,
"%s"
,
value
);
value
=
NULL
;
}
if
((
rc
=
event_arg_dup
(
args
,
"DIR"
,
&
value
))
>=
0
)
{
...
...
@@ -1450,7 +1450,7 @@ parse_configfile(char *filename)
'\0'
;
// remove trailing single quote
/* Prepend exec to replace the 'csh' */
asprintf
(
&
pinfo
->
cmdline
,
"
exec
%s"
,
"%s"
,
pinfo
->
cmdline
);
}
else
{
...
...
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