libosmocore[master]: vty/command.c: drop useless assignment

2017-06-15 Thread Harald Welte

Patch Set 2: Code-Review+2

-- 
To view, visit https://gerrit.osmocom.org/2880
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Ia30b6481ee570c6cf3e3b38e7a78028c66c036b7
Gerrit-PatchSet: 2
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Owner: Vadim Yanitskiy 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder
Gerrit-HasComments: No


[MERGED] libosmocore[master]: vty/command.c: drop useless assignment

2017-06-15 Thread Harald Welte
Harald Welte has submitted this change and it was merged.

Change subject: vty/command.c: drop useless assignment
..


vty/command.c: drop useless assignment

Change-Id: Ia30b6481ee570c6cf3e3b38e7a78028c66c036b7
---
M src/vty/command.c
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Harald Welte: Looks good to me, approved
  Jenkins Builder: Verified



diff --git a/src/vty/command.c b/src/vty/command.c
index e50706e..0168462 100644
--- a/src/vty/command.c
+++ b/src/vty/command.c
@@ -1655,7 +1655,7 @@
/* Make sure that cmd_vector is filtered based on current word */
command = vector_slot(vline, index);
if (command)
-   match = cmd_filter(command, cmd_vector, index, any_match);
+   cmd_filter(command, cmd_vector, index, any_match);
 
/* Make description vector. */
for (i = 0; i < vector_active(cmd_vector); i++) {

-- 
To view, visit https://gerrit.osmocom.org/2880
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ia30b6481ee570c6cf3e3b38e7a78028c66c036b7
Gerrit-PatchSet: 2
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Owner: Vadim Yanitskiy 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder


libosmocore[master]: vty/command.c: drop useless assignment

2017-06-13 Thread Harald Welte

Patch Set 2: Code-Review+1

-- 
To view, visit https://gerrit.osmocom.org/2880
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Ia30b6481ee570c6cf3e3b38e7a78028c66c036b7
Gerrit-PatchSet: 2
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Owner: Vadim Yanitskiy 
Gerrit-Reviewer: Harald Welte 
Gerrit-Reviewer: Jenkins Builder
Gerrit-HasComments: No


[PATCH] libosmocore[master]: vty/command.c: drop useless assignment

2017-06-11 Thread Vadim Yanitskiy

Review at  https://gerrit.osmocom.org/2880

vty/command.c: drop useless assignment

Change-Id: Ia30b6481ee570c6cf3e3b38e7a78028c66c036b7
---
M src/vty/command.c
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/80/2880/1

diff --git a/src/vty/command.c b/src/vty/command.c
index 587bd62..0f1b9a0 100644
--- a/src/vty/command.c
+++ b/src/vty/command.c
@@ -1654,7 +1654,7 @@
/* Make sure that cmd_vector is filtered based on current word */
command = vector_slot(vline, index);
if (command)
-   match = cmd_filter(command, cmd_vector, index, any_match);
+   cmd_filter(command, cmd_vector, index, any_match);
 
/* Make description vector. */
for (i = 0; i < vector_active(cmd_vector); i++) {

-- 
To view, visit https://gerrit.osmocom.org/2880
To unsubscribe, visit https://gerrit.osmocom.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia30b6481ee570c6cf3e3b38e7a78028c66c036b7
Gerrit-PatchSet: 1
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Owner: Vadim Yanitskiy