aboutsummaryrefslogtreecommitdiff
path: root/src/buffer.c
diff options
context:
space:
mode:
authorJakub Jelen <jjelen@redhat.com>2019-02-04 22:35:23 +0100
committerAndreas Schneider <asn@cryptomilk.org>2019-02-07 10:30:05 +0100
commit82f4c6c607d513b0a259262d0f9b260d7ab41e66 (patch)
tree732ba05ef4432e68420954dca06dce9456159693 /src/buffer.c
parentc110122fb599eab61eb2e74a07d58cdf1d0c03d3 (diff)
downloadlibssh-82f4c6c607d513b0a259262d0f9b260d7ab41e66.tar.gz
libssh-82f4c6c607d513b0a259262d0f9b260d7ab41e66.tar.xz
libssh-82f4c6c607d513b0a259262d0f9b260d7ab41e66.zip
buffer: Fix typo in a comment
Signed-off-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index ecc8fd09..1f38ae6f 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1015,7 +1015,7 @@ int ssh_buffer_pack_va(struct ssh_buffer_struct *buffer,
}
if (rc != SSH_ERROR){
- /* Check if our canary is intact, if not somthing really bad happened */
+ /* Check if our canary is intact, if not something really bad happened */
uint32_t canary = va_arg(ap, uint32_t);
if (canary != SSH_BUFFER_PACK_END) {
abort();