}
static void
-exec_ssh_command (const gchar *host, const gchar *utente,
- const gchar *password, const gchar *command)
+exec_ssh_command (const gchar *host, const gchar *command)
{
int rc;
char buf[4096];
}
}
- if (channel == NULL || !channel_is_open (channel))
+ channel = channel_new (session);
+ if (channel == NULL)
{
- if (channel == NULL)
- {
- channel = channel_new (session);
- if (channel == NULL)
- {
- g_warning ("Unable to open the SSH channel.");
- ssh_disconnect (session);
- ssh_finalize ();
- return;
- }
- }
+ g_warning ("Unable to open the SSH channel.");
+ ssh_disconnect (session);
+ ssh_finalize ();
+ return;
+ }
- rc = channel_open_session (channel);
- if (rc < 0)
- {
- g_warning ("Unable to open the SSH session on the channel.");
- channel_close (channel);
- ssh_disconnect (session);
- ssh_finalize ();
- channel = NULL;
- return;
- }
+ rc = channel_open_session (channel);
+ if (rc < 0)
+ {
+ g_warning ("Unable to open the session on the SSH channel.");
+ channel_close (channel);
+ ssh_disconnect (session);
+ ssh_finalize ();
+ channel = NULL;
+ return;
}
if (command != NULL)
rc = channel_request_exec (channel, cmd);
if (rc < 0)
{
+ g_warning ("Unable to execute the SSH command: %s.", ssh_get_error (session));
return;
}
if (channel_is_open (channel)
&& !channel_is_eof (channel))
{
- rc = channel_read (channel, buf, sizeof (buf), 0);
+ rc = channel_read (channel, buf, sizeof (buf), 1);
if (rc > 0)
{
- /*fwrite (buf, 1, rc, stdout);*/
+ fwrite (buf, rc, 1, stdout);
}
}
} while (rc > 0);
}
+
+ channel_close (channel);
+ channel = NULL;
}
static void
/* cambio la password */
gchar *command = g_strdup_printf ("echo -e \"%s\\n\" | sudo -k -S echo -e \"%s\\\\n%s\\\\n\" | sudo /usr/sbin/smbldap-passwd \"%s\"", password, password_nuova, password_nuova, utente);
- exec_ssh_command (host_ssh, utente, password, command);
+ exec_ssh_command (host_ssh, command);
}
}
col_cn, &cn,
-1);
- exec_ssh_command (host_ssh, utente, password, g_strdup_printf ("%s%s", command, cn));
+ exec_ssh_command (host_ssh, g_strdup_printf ("%s%s", command, cn));
(*load_list) ();
}