Skip to content

Instantly share code, notes, and snippets.

@PerceptionPointTeam
Created January 18, 2016 22:02
Show Gist options
  • Save PerceptionPointTeam/3df66650938b4cc2e475 to your computer and use it in GitHub Desktop.
Save PerceptionPointTeam/3df66650938b4cc2e475 to your computer and use it in GitHub Desktop.
key.c
void key_revoke(struct key *key)
{
. . .
if (!test_and_set_bit(KEY_FLAG_REVOKED, &key->flags) &&
key->type->revoke)
key->type->revoke(key);
. . .
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment