mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
37 lines
1.5 KiB
Diff
37 lines
1.5 KiB
Diff
Index: obuspa-10.0.0.1/src/core/cli_server.c
|
|
===================================================================
|
|
--- obuspa-10.0.0.1.orig/src/core/cli_server.c
|
|
+++ obuspa-10.0.0.1/src/core/cli_server.c
|
|
@@ -724,10 +724,6 @@ int ExecuteCli_Get(str_vector_t *args)
|
|
USP_ASSERT(gge->value != NULL);
|
|
SendCliResponse("%s => %s\n", gge->path, gge->value);
|
|
}
|
|
- else
|
|
- {
|
|
- SendCliResponse("ERROR: %d retrieving %s (%s)\n", gge->err_code, gge->path, gge->err_msg);
|
|
- }
|
|
}
|
|
|
|
GROUP_GET_VECTOR_Destroy(&ggv);
|
|
Index: obuspa-10.0.0.1/src/core/data_model.c
|
|
===================================================================
|
|
--- obuspa-10.0.0.1.orig/src/core/data_model.c
|
|
+++ obuspa-10.0.0.1/src/core/data_model.c
|
|
@@ -1330,7 +1330,7 @@ int DATA_MODEL_NotifyInstanceAdded(char
|
|
// Exit if instance already exists - nothing to do
|
|
if (exists)
|
|
{
|
|
- USP_ERR_SetMessage("%s: Object (%s) already exists in the data model", __FUNCTION__, path);
|
|
+ // USP_ERR_SetMessage("%s: Object (%s) already exists in the data model", __FUNCTION__, path);
|
|
return USP_ERR_CREATION_FAILURE;
|
|
}
|
|
|
|
@@ -1418,7 +1418,7 @@ int DATA_MODEL_NotifyInstanceDeleted(cha
|
|
// Exit if instance does not exist - nothing to do
|
|
if (exists == false)
|
|
{
|
|
- USP_ERR_SetMessage("%s: Object (%s) does not exist in the data model", __FUNCTION__, path);
|
|
+ // USP_ERR_SetMessage("%s: Object (%s) does not exist in the data model", __FUNCTION__, path);
|
|
return USP_ERR_OBJECT_DOES_NOT_EXIST;
|
|
}
|
|
|