From 82f4c6c607d513b0a259262d0f9b260d7ab41e66 Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Mon, 4 Feb 2019 22:35:23 +0100 Subject: [PATCH] buffer: Fix typo in a comment Signed-off-by: Jakub Jelen Reviewed-by: Andreas Schneider --- src/buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();