Bug 87026 - [demo]lynq_call_test

Change-Id: Id9d597487eb49d9d917c5267f34b19900483e884
diff --git a/mbtk/test/liblynq_lib/lynq_call_test.c b/mbtk/test/liblynq_lib/lynq_call_test.c
old mode 100755
new mode 100644
index 670eb10..48ce4af
--- a/mbtk/test/liblynq_lib/lynq_call_test.c
+++ b/mbtk/test/liblynq_lib/lynq_call_test.c
@@ -4,6 +4,7 @@
 #include "mbtk_info_api.h"
 #include "mbtk_audio.h"
 
+#define MAX_LEN 15
 
 #if 0
 #include <stdlib.h>
@@ -294,7 +295,7 @@
 
 int main(int argc, char *argv[])
 {
-    char operator[10];
+    char operator[MAX_LEN];
     int opt;
     int lv_voll = 0;
     voice_client_handle_type handle = -1;
@@ -333,7 +334,12 @@
             qser_voice_call_addstatehandler(handle, yk_voice_call_cb_func, &voice_call_id);
             break;
         case 3:
-            qser_voice_call_start(handle, E_QSER_VCALL_EXTERNAL_SLOT_1, "18981904623", &voice_call_id);//被叫电话
+            printf("input phone number:\n");
+            memset(operator, 0x0, MAX_LEN);
+            fgets(operator, MAX_LEN, stdin);
+            fflush(stdin);
+            printf("number:%s\n", operator);
+            qser_voice_call_start(handle, E_QSER_VCALL_EXTERNAL_SLOT_1, operator, &voice_call_id);//被叫电话
             break;
         case 4:
             qser_voice_call_end(handle, voice_call_id);