90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
}
return 0;
}
/*
** Default SSH command
*/
#ifdef _WIN32
static const char zDefaultSshCmd[] = "plink -ssh -T";
#else
static const char zDefaultSshCmd[] = "ssh -e none -T";
#endif
/*
** Initialize a Blob to the name of the configured SSH command.
|
|
|
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
}
return 0;
}
/*
** Default SSH command
*/
#if 0 /* was: defined(_WIN32). Windows generally has ssh now. */
static const char zDefaultSshCmd[] = "plink -ssh -T";
#else
static const char zDefaultSshCmd[] = "ssh -e none -T";
#endif
/*
** Initialize a Blob to the name of the configured SSH command.
|