Skip to content

Commit

Permalink
formatting changes to comply with linter
Browse files Browse the repository at this point in the history
  • Loading branch information
kcreyts committed Apr 22, 2024
1 parent c3cac2a commit be21a7d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions osquery/tables/system/ssh_keys.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,8 @@ bool parsePrivateKey(const std::string& keys_content,
char groupname[32];
size_t gname_len;
int status;
status = EVP_PKEY_get_group_name(pkey,
groupname,
sizeof(groupname),
&gname_len);
status =
EVP_PKEY_get_group_name(pkey, groupname, sizeof(groupname), &gname_len);
if (status) {
key_group_name.assign(groupname, gname_len);
}
Expand Down

0 comments on commit be21a7d

Please sign in to comment.