summaryrefslogtreecommitdiff
path: root/lib/vssh/libssh.c
diff options
context:
space:
mode:
authorEmil Engler <me@emilengler.com>2020-12-31 10:11:49 +0100
committerDaniel Stenberg <daniel@haxx.se>2021-01-02 23:35:59 +0100
commit725ec470e2ca5b1eb01ffee84d432653a8070722 (patch)
tree709335fcb15c168bb0eb2fbbc5f31d1e8fb6b6e2 /lib/vssh/libssh.c
parentaa71750687d12446465a873d323aa43a873bfb1b (diff)
downloadcurl-725ec470e2ca5b1eb01ffee84d432653a8070722.tar.gz
language: s/behaviour/behavior/g
We currently use both spellings the british "behaviour" and the american "behavior". However "behavior" is more used in the project so I think it's worth dropping the british name. Closes #6395
Diffstat (limited to 'lib/vssh/libssh.c')
-rw-r--r--lib/vssh/libssh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/vssh/libssh.c b/lib/vssh/libssh.c
index e79d8e823..74cbfe6e9 100644
--- a/lib/vssh/libssh.c
+++ b/lib/vssh/libssh.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 2017 - 2020 Red Hat, Inc.
+ * Copyright (C) 2017 - 2021 Red Hat, Inc.
*
* Authors: Nikos Mavrogiannopoulos, Tomas Mraz, Stanislav Zidek,
* Robert Kolcun, Andreas Schneider
@@ -1228,7 +1228,7 @@ static CURLcode myssh_statemach_act(struct connectdata *conn, bool *block)
/* If we have restart position then open for append */
flags = O_WRONLY|O_APPEND;
else
- /* Clear file before writing (normal behaviour) */
+ /* Clear file before writing (normal behavior) */
flags = O_WRONLY|O_CREAT|O_TRUNC;
if(sshc->sftp_file)