Skip to content

Commit b08d39a

Browse files
authored
Merge pull request #5592 from btriller/fix-typos
cf-runagent: Fix typos
2 parents aae855e + 26d0522 commit b08d39a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cf-runagent/cf-runagent.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -715,13 +715,13 @@ static void KeepControlPromises(EvalContext *ctx, const Policy *policy)
715715
if (strlen(value) >= sizeof(OUTPUT_DIRECTORY))
716716
{
717717
Log(LOG_LEVEL_ERR,
718-
"Could not set output direcory to '%s' - too long path",
718+
"Could not set output directory to '%s' - too long path",
719719
(const char *) value);
720720
}
721721
else if (IsAbsPath(value))
722722
{
723723
strlcpy(OUTPUT_DIRECTORY, value, sizeof(OUTPUT_DIRECTORY));
724-
Log(LOG_LEVEL_VERBOSE, "Setting output direcory to '%s'", OUTPUT_DIRECTORY);
724+
Log(LOG_LEVEL_VERBOSE, "Setting output directory to '%s'", OUTPUT_DIRECTORY);
725725
}
726726
continue;
727727
}

0 commit comments

Comments
 (0)