1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-05-30 05:24:50 +03:00

examples: Enable strict build

Signed-off-by: Jakub Jelen <jjelen@redhat.com>
Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Jakub Jelen 2019-11-20 15:06:19 +01:00 committed by Andreas Schneider
parent 9e7de14d59
commit 4b85934198

View File

@ -324,8 +324,8 @@ int main(int argc, char *argv[])
if (rc < 0) {
if (errno == EEXIST) {
printf("File \"%s\" exists. Overwrite it? (y|n) ", arguments.file);
scanf("%1023s", overwrite);
if (tolower(overwrite[0]) == 'y') {
rc = scanf("%1023s", overwrite);
if (rc > 0 && tolower(overwrite[0]) == 'y') {
rc = open(arguments.file, O_WRONLY);
if (rc > 0) {
close(rc);
@ -395,8 +395,8 @@ int main(int argc, char *argv[])
if (rc < 0) {
if (errno == EEXIST) {
printf("File \"%s\" exists. Overwrite it? (y|n) ", pubkey_file);
scanf("%1023s", overwrite);
if (tolower(overwrite[0]) == 'y') {
rc = scanf("%1023s", overwrite);
if (rc > 0 && tolower(overwrite[0]) == 'y') {
rc = open(pubkey_file, O_WRONLY);
if (rc > 0) {
close(rc);