examples: remove assignments of variable rc that's never used

This commit is contained in:
Daniel Stenberg 2010-04-28 09:05:19 +02:00
parent 514f4d9305
commit 0862a1a39a
4 changed files with 12 additions and 12 deletions

View File

@ -213,8 +213,9 @@ int main(int argc, char *argv[])
shutdown: shutdown:
while ((rc = libssh2_session_disconnect(session, while (libssh2_session_disconnect(session,
"Normal Shutdown, Thank you for playing")) == LIBSSH2_ERROR_EAGAIN); "Normal Shutdown, Thank you for playing") ==
LIBSSH2_ERROR_EAGAIN);
libssh2_session_free(session); libssh2_session_free(session);
#ifdef WIN32 #ifdef WIN32

View File

@ -151,13 +151,11 @@ int main(int argc, char *argv[])
fprintf(stderr, "libssh2_sftp_mkdirnb()!\n"); fprintf(stderr, "libssh2_sftp_mkdirnb()!\n");
/* Make a directory via SFTP */ /* Make a directory via SFTP */
while ((rc = libssh2_sftp_mkdir(sftp_session, sftppath, while (libssh2_sftp_mkdir(sftp_session, sftppath,
LIBSSH2_SFTP_S_IRWXU| LIBSSH2_SFTP_S_IRWXU|
LIBSSH2_SFTP_S_IRGRP|LIBSSH2_SFTP_S_IXGRP| LIBSSH2_SFTP_S_IRGRP|LIBSSH2_SFTP_S_IXGRP|
LIBSSH2_SFTP_S_IROTH|LIBSSH2_SFTP_S_IXOTH)) LIBSSH2_SFTP_S_IROTH|LIBSSH2_SFTP_S_IXOTH)
== LIBSSH2_ERROR_EAGAIN) { == LIBSSH2_ERROR_EAGAIN);
;
}
libssh2_sftp_shutdown(sftp_session); libssh2_sftp_shutdown(sftp_session);

View File

@ -265,8 +265,8 @@ int main(int argc, char *argv[])
shutdown: shutdown:
printf("libssh2_session_disconnect\n"); printf("libssh2_session_disconnect\n");
while ((rc = libssh2_session_disconnect(session, while (libssh2_session_disconnect(session,
"Normal Shutdown, Thank you")) == "Normal Shutdown, Thank you") ==
LIBSSH2_ERROR_EAGAIN); LIBSSH2_ERROR_EAGAIN);
libssh2_session_free(session); libssh2_session_free(session);

View File

@ -209,7 +209,8 @@ int main(int argc, char *argv[])
shutdown: shutdown:
while ((rc = libssh2_session_disconnect(session, "Normal Shutdown, Thank you for playing")) == LIBSSH2_ERROR_EAGAIN); while (libssh2_session_disconnect(session, "Normal Shutdown, Thank you for playing")
== LIBSSH2_ERROR_EAGAIN);
libssh2_session_free(session); libssh2_session_free(session);
#ifdef WIN32 #ifdef WIN32