"Lessley Dennington via GitGitGadget" <gitgitgadget@xxxxxxxxx> writes: > From: Lessley Dennington <lessleydennington@xxxxxxxxx> > > Update git-credential-osxkeychain.c to remove 'format string is not a string > literal (potentially insecure)' compiler warning by treating the string as > an argument. > > Signed-off-by: Lessley Dennington <lessleydennington@xxxxxxxxx> > --- > osx-keychain: fix compiler warning > > Running make in contrib/credential/osxkeychain currently shows the > following warning: > > warning: format string is not a string literal (potentially insecure) > > This small change to treat the string as an argument fixes the issue. > > Thanks, Lessley Thanks! I literally just ran into this warning, and it's been already fixed :) > > Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1293%2Fldennington%2Ffix-osx-keychain-warning-v1 > Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1293/ldennington/fix-osx-keychain-warning-v1 > Pull-Request: https://github.com/gitgitgadget/git/pull/1293 > > contrib/credential/osxkeychain/git-credential-osxkeychain.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/contrib/credential/osxkeychain/git-credential-osxkeychain.c b/contrib/credential/osxkeychain/git-credential-osxkeychain.c > index 0b44a9b7cc6..bf77748d602 100644 > --- a/contrib/credential/osxkeychain/git-credential-osxkeychain.c > +++ b/contrib/credential/osxkeychain/git-credential-osxkeychain.c > @@ -168,7 +168,7 @@ int main(int argc, const char **argv) > "usage: git credential-osxkeychain <get|store|erase>"; > > if (!argv[1]) > - die(usage); > + die("%s", usage); > > read_credential(); Looks good! > > > base-commit: 71a8fab31b70c417e8f5b5f716581f89955a7082 > -- > gitgitgadget