From 89b51c534173a2c0448b51e5a409b21de70f0075 Mon Sep 17 00:00:00 2001 From: "saerome.kim" Date: Thu, 18 Jan 2018 21:01:29 +0900 Subject: [PATCH] demo: change pin nubmer Signed-off-by: saerome.kim --- capi/demo/comp-manager.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/capi/demo/comp-manager.c b/capi/demo/comp-manager.c index 2edb84d..d60fa8b 100755 --- a/capi/demo/comp-manager.c +++ b/capi/demo/comp-manager.c @@ -37,7 +37,7 @@ static char group_idx[MENU_DATA_SIZE + 1] = "1"; static char group_idx_a[MENU_DATA_SIZE + 1] = "1"; static char group_idx_b[MENU_DATA_SIZE + 1] = "2"; static char device_idx[MENU_DATA_SIZE + 1] = "1"; -static char pin[MENU_DATA_SIZE + 1] = "11223344"; +static char pin[MENU_DATA_SIZE + 1] = "12341234"; static char message[MENU_DATA_SIZE + 1] = "Hello World!!"; int run_get_my_id(MManager *mm, struct menu_data *menu) @@ -823,7 +823,8 @@ static struct menu_data menu_group_invite_device[] = { { "1", "Show Found Device(s)", NULL, run_devices_show, NULL }, { "2", "Group Index", NULL, NULL, group_idx }, { "3", "Device Index", NULL, NULL, device_idx }, - { "4", "Run", NULL, run_device_invite, NULL }, + { "4", "PIN", NULL, NULL, pin }, + { "5", "Run", NULL, run_device_invite, NULL }, { NULL, NULL, }, }; -- 2.34.1