src/phyp: Remove the whitespace before ';'

This commit is contained in:
Osier Yang 2013-05-21 15:21:19 +08:00
parent 610ae59fcc
commit c2e284ef66

View File

@ -1008,7 +1008,7 @@ connected:
libssh2_session_set_blocking(session, 0); libssh2_session_set_blocking(session, 0);
while ((rc = libssh2_session_startup(session, sock)) == while ((rc = libssh2_session_startup(session, sock)) ==
LIBSSH2_ERROR_EAGAIN) ; LIBSSH2_ERROR_EAGAIN);
if (rc) { if (rc) {
virReportError(VIR_ERR_INTERNAL_ERROR, virReportError(VIR_ERR_INTERNAL_ERROR,
"%s", _("Failure establishing SSH session.")); "%s", _("Failure establishing SSH session."));
@ -1026,7 +1026,7 @@ connected:
pubkey, pubkey,
pvtkey, pvtkey,
NULL)) == NULL)) ==
LIBSSH2_ERROR_EAGAIN) ; LIBSSH2_ERROR_EAGAIN);
keyboard_interactive: keyboard_interactive:
if (rc == LIBSSH2_ERROR_SOCKET_NONE if (rc == LIBSSH2_ERROR_SOCKET_NONE
@ -1049,7 +1049,7 @@ keyboard_interactive:
while ((rc = while ((rc =
libssh2_userauth_password(session, username, libssh2_userauth_password(session, username,
password)) == password)) ==
LIBSSH2_ERROR_EAGAIN) ; LIBSSH2_ERROR_EAGAIN);
if (rc) { if (rc) {
virReportError(VIR_ERR_AUTH_FAILED, virReportError(VIR_ERR_AUTH_FAILED,