From 663f24b2e41c90709750337e47f2f43b3100422f Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Wed, 9 Sep 2020 13:03:44 +0200 Subject: 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. --- src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/commands.rs') 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")?; -- cgit v1.2.1