Skip to content

Commit

Permalink
sftp protocol status in case of no error is 0 (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
oheil authored Feb 16, 2022
1 parent 3654257 commit 959a9a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Curl/Easy.jl
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ const PROTOCOL_STATUS = Dict{String,Function}(
"pop3s" => status_2xx_ok,
"rtsp" => status_2xx_ok,
"scp" => status_zero_ok,
"sftp" => status_2xx_ok,
"sftp" => status_zero_ok,
"smtp" => status_2xx_ok,
"smtps" => status_2xx_ok,
)
Expand Down

0 comments on commit 959a9a1

Please sign in to comment.