Skip to content

Commit cf59f57

Browse files
committedApr 13, 2024
Use Url::host_as_argument() in ssh::connect()
Instead of `Url::host_argument_safe()`. This also removes the comment about how the username should be handled if added, mostly because I didn't really need to add that comment.
1 parent 902367f commit cf59f57

File tree

1 file changed

+7
-5
lines changed
  • gix-transport/src/client/blocking_io/ssh

1 file changed

+7
-5
lines changed
 

‎gix-transport/src/client/blocking_io/ssh/mod.rs

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
use std::process::Stdio;
22

3+
use gix_url::ArgumentSafety::*;
4+
35
use crate::{client::blocking_io, Protocol};
46

57
/// The error used in [`connect()`].
@@ -118,11 +120,11 @@ pub fn connect(
118120
.stdin(Stdio::null())
119121
.with_shell()
120122
.arg("-G")
121-
// Username affects the stdout from `ssh -G` but may not affect the status. But if
122-
// we end up needing it, it can be added here, with a user_argument_safe() check.
123-
.arg(url.host_argument_safe().ok_or_else(|| Error::AmbiguousHostName {
124-
host: url.host().expect("set in ssh urls").into(),
125-
})?),
123+
.arg(match url.host_as_argument() {
124+
Usable(host) => host,
125+
Dangerous(host) => Err(Error::AmbiguousHostName { host: host.into() })?,
126+
Absent => panic!("BUG: host should always be present in SSH URLs"),
127+
}),
126128
);
127129
gix_features::trace::debug!(cmd = ?cmd, "invoking `ssh` for feature check");
128130
kind = if cmd.status().ok().map_or(false, |status| status.success()) {

0 commit comments

Comments
 (0)
Please sign in to comment.