Index: /branches/rel_apv_10_7_3/usr/click/lib/libqos_cli/qos_cli.c
===================================================================
--- /branches/rel_apv_10_7_3/usr/click/lib/libqos_cli/qos_cli.c	(revision 40097)
+++ /branches/rel_apv_10_7_3/usr/click/lib/libqos_cli/qos_cli.c	(working copy)
@@ -516,7 +516,7 @@
 	if(!name_for_all) {
 		if (getrealif(sIfName, sHwIf) != 0) {
 			printf("ERROR: not found the QoS interface \"%s\"\n", sIfName);
-			return(-1);
+			return(0);
 		}
 	}
 
@@ -538,7 +538,7 @@
 		else if(!name_for_all) {
 			printf("Not found the configuration\n");
 		}
-		return(-1);
+		return(0);
 	}
 
 	return(0);
@@ -570,7 +570,7 @@
 	if(!name_for_all) {
 		if (getrealif(sIfName, sHwIf) != 0) {
 			printf("ERROR: not found the QoS interface \"%s\"\n", sIfName);
-			return(-1);
+			return (0);
 		}
 	}
 
@@ -592,7 +592,7 @@
 		else if(!name_for_all) {
 			printf("Not found the configuration\n");
 		}
-		return(-1);
+		return(0);
 	}
 
 	return(0);
Index: /branches/rel_apv_10_7_3/usr/click/lib/libwebui/webui.c
===================================================================
--- /branches/rel_apv_10_7_3/usr/click/lib/libwebui/webui.c	(revision 40097)
+++ /branches/rel_apv_10_7_3/usr/click/lib/libwebui/webui.c	(working copy)
@@ -3579,11 +3579,11 @@
 	if (model_id != AFM_MODEL_vAPV) {
 		printf("The operation is only supported on "ARRAY_PRODINFO_vAPV"!\n");
 		printf("Operation aborted\n");
-		return -1;
+		return 0;
 	}
 	if(access("/var/crash/cm_address", F_OK) == -1){
 		printf("There is no remote activation server added.\nPlease execute 'activationserver [ip] [port]' to add an remote activation server first!");
-		return -1;
+		return 0;
 	}
 
     fp = fopen("/var/crash/cm_address","r");
