diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-01-01 01:55:31 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-01-01 01:55:31 +0000 |
commit | 985421b5149560ad814fd1e841f6029e6b0c480b (patch) | |
tree | 06eb1cb129a4b8b1a4a6e8c9178d34810a970586 /usr.bin/ssh/sftp-server.c | |
parent | 2c347e29a0c17aace88982921ec7d42cc6628f68 (diff) |
spelling
ok dtucker@
Diffstat (limited to 'usr.bin/ssh/sftp-server.c')
-rw-r--r-- | usr.bin/ssh/sftp-server.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/sftp-server.c b/usr.bin/ssh/sftp-server.c index 818b5c68a67..2c9c300bbe8 100644 --- a/usr.bin/ssh/sftp-server.c +++ b/usr.bin/ssh/sftp-server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sftp-server.c,v 1.134 2021/11/18 03:06:03 djm Exp $ */ +/* $OpenBSD: sftp-server.c,v 1.135 2022/01/01 01:55:30 jsg Exp $ */ /* * Copyright (c) 2000-2004 Markus Friedl. All rights reserved. * @@ -657,7 +657,7 @@ send_statvfs(u_int32_t id, struct statvfs *st) /* * Prepare SSH2_FXP_VERSION extension advertisement for a single extension. - * The extension is checked for permission prior to advertisment. + * The extension is checked for permission prior to advertisement. */ static int compose_extension(struct sshbuf *msg, const char *name, const char *ver) @@ -694,7 +694,7 @@ process_init(void) (r = sshbuf_put_u32(msg, SSH2_FILEXFER_VERSION)) != 0) fatal_fr(r, "compose"); - /* extension advertisments */ + /* extension advertisements */ compose_extension(msg, "posix-rename@openssh.com", "1"); compose_extension(msg, "statvfs@openssh.com", "2"); compose_extension(msg, "fstatvfs@openssh.com", "2"); |