From e6eb589ef404e6fc29aa8320f3e5696ad083fe3b Mon Sep 17 00:00:00 2001 From: Lionel Gauthier <lionel.gauthier@eurecom.fr> Date: Thu, 4 Dec 2014 12:15:05 +0000 Subject: [PATCH] git-svn-id: http://svn.eurecom.fr/openair4G/trunk@6159 818b1a75-f10b-46b9-bf7c-635c3b92a50f --- openair-cn/SGW-LITE/spgw_config.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/openair-cn/SGW-LITE/spgw_config.c b/openair-cn/SGW-LITE/spgw_config.c index abfbb60790..1ff16dd99a 100755 --- a/openair-cn/SGW-LITE/spgw_config.c +++ b/openair-cn/SGW-LITE/spgw_config.c @@ -132,13 +132,16 @@ sgw_ipv6_mask_in6_addr( int spgw_system(char *command_pP, int abort_on_errorP) { - int ret = 0; - ret = system(command_pP); - if (ret < 0) { - SPGW_APP_ERROR("ERROR in system command %s: %d\n", + int ret = -1; + if (command_pP) { + SPGW_APP_INFO("system command: %s\n",command_pP); + ret = system(command_pP); + if (ret < 0) { + SPGW_APP_ERROR("ERROR in system command %s: %d\n", command_pP,ret); - if (abort_on_errorP) { - exit(-1); // may be not exit + if (abort_on_errorP) { + exit(-1); // may be not exit + } } } return ret; -- GitLab