ipacm: fix the total_num_offload_rules issue

Add the fix to decrease the total_num_offload_rules
correctly when modem removes offload rules
successfully.

Change-Id: I451807090327658f942f71ec293ccd683ae87dbf
diff --git a/ipacm/src/IPACM_Filtering.cpp b/ipacm/src/IPACM_Filtering.cpp
index cdb37b4..a65b769 100644
--- a/ipacm/src/IPACM_Filtering.cpp
+++ b/ipacm/src/IPACM_Filtering.cpp
@@ -659,6 +659,10 @@
 			goto fail;
 		}
 	}
+	/* update total_num_offload_rules */
+	total_num_offload_rules -= flt_rule_tbl->num_hdls;
+	IPACMDBG_H("total_num_offload_rules %d \n", total_num_offload_rules);
+
 fail:
 	close(fd_wwan_ioctl);
 	return result;