1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-07 08:02:55 +03:00

examples: Reformat authenticaton.c

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Andreas Schneider
2018-09-20 14:32:26 +02:00
parent a30d542207
commit 4c47719d98

View File

@@ -24,7 +24,8 @@ clients must be made or how a client should react.
#include <libssh/libssh.h> #include <libssh/libssh.h>
#include "examples_common.h" #include "examples_common.h"
int authenticate_kbdint(ssh_session session, const char *password) { int authenticate_kbdint(ssh_session session, const char *password)
{
int err; int err;
err = ssh_userauth_kbdint(session, NULL, NULL); err = ssh_userauth_kbdint(session, NULL, NULL);
@@ -99,11 +100,13 @@ int authenticate_kbdint(ssh_session session, const char *password) {
return err; return err;
} }
static void error(ssh_session session){ static void error(ssh_session session)
{
fprintf(stderr,"Authentication failed: %s\n",ssh_get_error(session)); fprintf(stderr,"Authentication failed: %s\n",ssh_get_error(session));
} }
int authenticate_console(ssh_session session){ int authenticate_console(ssh_session session)
{
int rc; int rc;
int method; int method;
char password[128] = {0}; char password[128] = {0};