diff options
author | Robin Krahl <robin.krahl@ireas.org> | 2020-09-09 13:03:44 +0200 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2021-01-10 17:37:57 -0800 |
commit | b39663bf381cbc1079fed08fbd3d0fe665151e90 (patch) | |
tree | c603d17f1cee7d536b55297f683e4628781ee99b /src/commands.rs | |
parent | 9593dfd03a6ca085d649ca090b6ec5e5f0104e78 (diff) | |
download | nitrocli-b39663bf381cbc1079fed08fbd3d0fe665151e90.tar.gz nitrocli-b39663bf381cbc1079fed08fbd3d0fe665151e90.tar.bz2 |
Rename device path to USB path in list output
For consistency with the --usb-path option, this path renames the device
path column in the output of the list command to USB path.
Diffstat (limited to 'src/commands.rs')
-rw-r--r-- | src/commands.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.rs b/src/commands.rs index d352ca2..ebb28ca 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -425,7 +425,7 @@ pub fn list(ctx: &mut Context<'_>, no_connect: bool) -> anyhow::Result<()> { if device_infos.is_empty() { println!(ctx, "No Nitrokey device connected")?; } else { - println!(ctx, "device path\tmodel\tserial number")?; + println!(ctx, "USB path\tmodel\tserial number")?; let mut manager = nitrokey::take().context("Failed to acquire access to Nitrokey device manager")?; |