aboutsummaryrefslogtreecommitdiff
path: root/include/libssh
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2019-10-31 16:06:06 +0100
committerAndreas Schneider <asn@cryptomilk.org>2019-12-09 16:08:03 +0100
commit1be68139bbf34cfce21fe36ae0328440fffcabcb (patch)
tree62ba18a16a4a137171095d5a372ef379f498f36c /include/libssh
parentc820d2a2dcd18d58603ca41bdc0a38410227b29b (diff)
downloadlibssh-1be68139bbf34cfce21fe36ae0328440fffcabcb.tar.gz
libssh-1be68139bbf34cfce21fe36ae0328440fffcabcb.tar.xz
libssh-1be68139bbf34cfce21fe36ae0328440fffcabcb.zip
agent: Return uint32_t for ssh_agent_get_ident_count()
Fixes T188 Signed-off-by: Andreas Schneider <asn@cryptomilk.org> Reviewed-by: Jakub Jelen <jjelen@redhat.com>
Diffstat (limited to 'include/libssh')
-rw-r--r--include/libssh/agent.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libssh/agent.h b/include/libssh/agent.h
index 0142f575..d4eefbbf 100644
--- a/include/libssh/agent.h
+++ b/include/libssh/agent.h
@@ -104,7 +104,7 @@ void ssh_agent_free(struct ssh_agent_struct *agent);
*/
int ssh_agent_is_running(struct ssh_session_struct *session);
-int ssh_agent_get_ident_count(struct ssh_session_struct *session);
+uint32_t ssh_agent_get_ident_count(struct ssh_session_struct *session);
ssh_key ssh_agent_get_next_ident(struct ssh_session_struct *session,
char **comment);