From 29408e71079df732454475d968a5f5491d38eb6e Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Mon, 27 Feb 2012 08:27:53 -0500 Subject: SSH: Remove unused --file option of sss_ssh_knownhostsproxy --- src/sss_client/ssh/sss_ssh_knownhostsproxy.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/sss_client') diff --git a/src/sss_client/ssh/sss_ssh_knownhostsproxy.c b/src/sss_client/ssh/sss_ssh_knownhostsproxy.c index 1cfdf24d..9dae3cb6 100644 --- a/src/sss_client/ssh/sss_ssh_knownhostsproxy.c +++ b/src/sss_client/ssh/sss_ssh_knownhostsproxy.c @@ -36,8 +36,6 @@ #include "sss_client/sss_cli.h" #include "sss_client/ssh/sss_ssh_client.h" -#define DEFAULT_FILE ".ssh/sss_known_hosts" - #define BUFFER_SIZE 8192 /* connect to server using socket */ @@ -203,7 +201,6 @@ int main(int argc, const char **argv) { TALLOC_CTX *mem_ctx; int pc_debug = SSSDBG_DEFAULT; - const char *pc_file = DEFAULT_FILE; const char *pc_port = "22"; const char *pc_domain = NULL; const char *pc_host = NULL; @@ -212,8 +209,6 @@ int main(int argc, const char **argv) POPT_AUTOHELP { "debug", '\0', POPT_ARG_INT | POPT_ARGFLAG_DOC_HIDDEN, &pc_debug, 0, _("The debug level to run with"), NULL }, - { "file", 'f', POPT_ARG_STRING, &pc_file, 0, - _("The known_hosts file to use"), NULL }, { "port", 'p', POPT_ARG_STRING, &pc_port, 0, _("The port to use to connect to the host"), NULL }, { "domain", 'd', POPT_ARG_STRING, &pc_domain, 0, -- cgit