1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-08-08 19:02:07 +03:00

tidy-up: text nits, English contractions [ci skip]

In input/output text and docs mostly.
This commit is contained in:
Viktor Szakats
2023-04-27 14:17:52 +00:00
parent f4a4c05dc3
commit d67aaaffc4
73 changed files with 99 additions and 99 deletions

View File

@@ -167,7 +167,7 @@ int main(int argc, char *argv[])
tempstorage = fopen(storage, "wb");
if(!tempstorage) {
fprintf(stderr, "Can't open temp storage file %s\n", storage);
fprintf(stderr, "Cannot open temp storage file %s\n", storage);
goto shutdown;
}
@@ -271,8 +271,8 @@ int main(int argc, char *argv[])
tempstorage = fopen(storage, "rb");
if(!tempstorage) {
/* weird, we can't read the file we just wrote to... */
fprintf(stderr, "can't open %s for reading\n", storage);
/* weird, we cannot read the file we just wrote to... */
fprintf(stderr, "Cannot open %s for reading\n", storage);
goto shutdown;
}