summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEd Tanous <edtanous@google.com>2023-06-06 21:44:21 +0300
committerEd Tanous <ed@tanous.net>2023-06-06 22:51:27 +0300
commit7b8270cdd27620e1aa64e835cdc73913c11e7f02 (patch)
treebf382f1b44d82728edea4a29373e97088178bcf6 /include
parent0a9c11e85eb92140ba8d7120244b97cad615d483 (diff)
downloadbmcweb-7b8270cdd27620e1aa64e835cdc73913c11e7f02.tar.xz
Remove extra character
This extra quote snuch into the comment somehow. Fix it. Change-Id: I5aa14e1f43b1de9cabda006f7f9727d611c5aea3 Signed-off-by: Ed Tanous <edtanous@google.com>
Diffstat (limited to 'include')
-rw-r--r--include/pam_authenticate.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pam_authenticate.hpp b/include/pam_authenticate.hpp
index 7af28ad987..4759e02eda 100644
--- a/include/pam_authenticate.hpp
+++ b/include/pam_authenticate.hpp
@@ -49,7 +49,7 @@ inline int pamFunctionConversation(int numMsg, const struct pam_message** msg,
// passing off ownership of this to a C application, there aren't a lot
// of sane ways to avoid it.
- // NOLINTNEXTLINE(cppcoreguidelines-no-malloc)'
+ // NOLINTNEXTLINE(cppcoreguidelines-no-malloc)
void* passPtr = malloc(appPassSize + 1);
// NOLINTNEXTLINE(cppcoreguidelines-pro-type-reinterpret-cast)
char* pass = reinterpret_cast<char*>(passPtr);