Skip to content

Commit

Permalink
improved err msg
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Wardle committed Oct 3, 2018
1 parent 8a8a8c5 commit bd14044
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion launchDaemon/launchDaemon/Rules.m
Expand Up @@ -386,7 +386,7 @@ -(Rule*)find:(Process*)process
if(YES != [[NSCountedSet setWithArray:matchingRule.signingInfo[KEY_SIGNATURE_AUTHORITIES]] isEqualToSet: [NSCountedSet setWithArray:process.signingInfo[KEY_SIGNATURE_AUTHORITIES]]] )
{
//err msg
logMsg(LOG_ERR, [NSString stringWithFormat:@"signing authority mismatch between %@/%@", matchingRule.signingInfo[KEY_SIGNATURE_AUTHORITIES], process.signingInfo[KEY_SIGNATURE_AUTHORITIES]]);
logMsg(LOG_ERR, [NSString stringWithFormat:@"signing authority mismatch for %@ %@/%@", process.path, matchingRule.signingInfo[KEY_SIGNATURE_AUTHORITIES], process.signingInfo[KEY_SIGNATURE_AUTHORITIES]]);

//unset
matchingRule = nil;
Expand Down

0 comments on commit bd14044

Please sign in to comment.