SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
17
sysutils/cfengine/patches/patch-cf-agent_verify_files_c
Normal file
17
sysutils/cfengine/patches/patch-cf-agent_verify_files_c
Normal file
|
@ -0,0 +1,17 @@
|
|||
--- cf-agent/verify_files.c.orig Wed Jan 20 00:29:13 2016
|
||||
+++ cf-agent/verify_files.c Wed Jan 20 00:32:12 2016
|
||||
@@ -680,12 +680,12 @@ PromiseResult ScheduleEditOperation(EvalContext *ctx,
|
||||
if ((vp = PromiseGetConstraintAsRval(pp, "edit_line", RVAL_TYPE_FNCALL)))
|
||||
{
|
||||
fp = (FnCall *) vp;
|
||||
- strcpy(edit_bundle_name, fp->name);
|
||||
+ strlcpy(edit_bundle_name, fp->name, CF_BUFSIZE);
|
||||
args = fp->args;
|
||||
}
|
||||
else if ((vp = PromiseGetConstraintAsRval(pp, "edit_line", RVAL_TYPE_SCALAR)))
|
||||
{
|
||||
- strcpy(edit_bundle_name, (char *) vp);
|
||||
+ strlcpy(edit_bundle_name, (char *) vp, CF_BUFSIZE);
|
||||
args = NULL;
|
||||
}
|
||||
else
|
Loading…
Add table
Add a link
Reference in a new issue