From 2c13683554ee64d8fd6f65987dc35e2819a9604a Mon Sep 17 00:00:00 2001
From: Dongsheng Song <dongsheng.song@gmail.com>
Date: Wed, 17 Nov 2010 17:23:16 +0800
Subject: [PATCH 1/2] Typo fix, s/elsif/elif/g

---
 src/misc.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/misc.c b/src/misc.c
index cbea039..c1ac128 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -100,7 +100,7 @@ _libssh2_recv(libssh2_socket_t sock, void *buffer, size_t length, int flags)
 #ifdef WIN32
     if (rc < 0 )
         return -wsa2errno();
-#elsif defined(__VMS)
+#elif defined(__VMS)
     if (rc < 0 ){
         if ( errno == EWOULDBLOCK )
             return -EAGAIN;
@@ -126,7 +126,7 @@ _libssh2_send(libssh2_socket_t sock, const void *buffer, size_t length,
 #ifdef WIN32
     if (rc < 0 )
         return -wsa2errno();
-#elsif defined(__VMS)
+#elif defined(__VMS)
     if (rc < 0 ) {
         if ( errno == EWOULDBLOCK )
             return -EAGAIN;
@@ -564,7 +564,7 @@ void _libssh2_list_insert(struct list_node *after, /* insert before this */
  * The Open Group Base Specifications Issue 6
  * IEEE Std 1003.1, 2004 Edition
  */
-  
+
 /*
  *  THIS SOFTWARE IS NOT COPYRIGHTED
  *
-- 
1.7.2.3

