Skip to content

Commit

Permalink
disable checking for sshfs min version on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mhogomchungu committed Nov 16, 2024
1 parent 1521828 commit 3a854df
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/engines/sshfs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ sshfs::sshfs() :
m_version_greater_or_equal_minimum( false,*this,this->minimumVersion() ),
m_sshAuthSock( qgetenv( "SSH_AUTH_SOCK" ) )
{
Q_UNUSED( m_version_greater_or_equal_minimum )
}

bool sshfs::requiresAPassword( const engines::engine::cmdArgsList& e ) const
Expand All @@ -105,6 +106,9 @@ engines::engine::status sshfs::passAllRequirenments( const engines::engine::cmdA
{
if( utility::platformIsWindows() ){

return engines::engine::passAllRequirenments( opt ) ;

/*
auto m = engines::engine::passAllRequirenments( opt ) ;
if( m != engines::engine::status::success ){
Expand All @@ -117,6 +121,7 @@ engines::engine::status sshfs::passAllRequirenments( const engines::engine::cmdA
}else{
return engines::engine::status::backEndFailedToMeetMinimumRequirenment ;
}
*/
}else{
return engines::engine::passAllRequirenments( opt ) ;
}
Expand Down

0 comments on commit 3a854df

Please sign in to comment.