diff mbox series

[iwinfo,1/4] iwinfo: fix wrong error message

Message ID 20221113151120.790801-1-a.heider@gmail.com
State Not Applicable
Headers show
Series [iwinfo,1/4] iwinfo: fix wrong error message | expand

Commit Message

Andre Heider Nov. 13, 2022, 3:11 p.m. UTC
In this case the specified backend couldn't be found.

Signed-off-by: Andre Heider <a.heider@gmail.com>
---
 iwinfo_cli.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Andre Heider Nov. 15, 2022, 9:37 a.m. UTC | #1
On 13/11/2022 16:11, Andre Heider wrote:
> In this case the specified backend couldn't be found.
> 
> Signed-off-by: Andre Heider <a.heider@gmail.com>

Please ignore this one, it's wrong and the error message is correct as-is.

The other patches still stand.

Thanks,
Andre
diff mbox series

Patch

diff --git a/iwinfo_cli.c b/iwinfo_cli.c
index dca86cf..d8851d7 100644
--- a/iwinfo_cli.c
+++ b/iwinfo_cli.c
@@ -972,7 +972,7 @@  int main(int argc, char **argv)
 
 		if (!iw)
 		{
-			fprintf(stderr, "No such wireless device: %s\n", argv[1]);
+			fprintf(stderr, "No such wireless backend: %s\n", argv[1]);
 			rv = 1;
 		}
 		else