Blame SOURCES/0008-ndptool-fix-target-parameter-typo.patch

f59661
From e67999b18c59d37d59b557316dfe53ed5d52e923 Mon Sep 17 00:00:00 2001
f59661
From: Hangbin Liu <haliu@redhat.com>
f59661
Date: Wed, 12 Dec 2018 11:38:30 +0800
f59661
Subject: [PATCH 8/8] ndptool: fix target parameter typo
f59661
f59661
In my last commit acccd780df517 ("ndptool: add -T target support"), after
f59661
renaming parameter -d to -T. I forgot to change the name in switch opt.
f59661
f59661
Fixes: acccd780df517 ("ndptool: add -T target support")
f59661
Signed-off-by: Hangbin Liu <haliu@redhat.com>
f59661
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
f59661
---
f59661
 utils/ndptool.c | 2 +-
f59661
 1 file changed, 1 insertion(+), 1 deletion(-)
f59661
f59661
diff --git a/utils/ndptool.c b/utils/ndptool.c
f59661
index ba24d75..afa516f 100644
f59661
--- a/utils/ndptool.c
f59661
+++ b/utils/ndptool.c
f59661
@@ -421,7 +421,7 @@ int main(int argc, char **argv)
f59661
 			free(ifname);
f59661
 			ifname = strdup(optarg);
f59661
 			break;
f59661
-		case 'd':
f59661
+		case 'T':
f59661
 			free(addr);
f59661
 			addr = strdup(optarg);
f59661
 			break;
f59661
-- 
f59661
2.19.2
f59661