Skip to content

Commit 567cd52

Browse files
committed
Fix merge conflict resolution errors
1 parent 02eab05 commit 567cd52

File tree

3 files changed

+0
-11
lines changed

3 files changed

+0
-11
lines changed

src/collector/collector_sync.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1262,8 +1262,6 @@ static void remove_ip_intercept(collector_sync_t *sync, ipintercept_t *ipint) {
12621262

12631263
if (ipint->vendmirrorid != OPENLI_VENDOR_MIRROR_NONE) {
12641264
remove_vendormirror_id(sync, ipint);
1265-
} else if (!uuid_is_null(ipint->common.xid)) {
1266-
withdraw_xid(sync, ipint);
12671265
}
12681266
withdraw_xid(sync, ipint);
12691267
publish_openli_msg(sync->zmq_pubsocks[ipint->common.seqtrackerid], expmsg);

src/intercept.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ int compare_xid_list(intercept_common_t *a, intercept_common_t *b) {
9494
}
9595
}
9696
return 0;
97-
>>>>>>> develop
9897
}
9998

10099
int update_modified_intercept_common(intercept_common_t *current,

src/provisioner/updateserver_jsoncreation.c

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,6 @@ static void convert_commonintercept_to_json(json_object *jobj,
8989
encrypt_str = "none";
9090
}
9191

92-
if (!uuid_is_null(common->xid)) {
93-
uuid_unparse(common->xid, uuid);
94-
xid = json_object_new_string(uuid);
95-
} else {
96-
xid = NULL;
97-
}
98-
99-
10092
xids = NULL;
10193
if (common->xid_count > 0) {
10294
size_t i;

0 commit comments

Comments
 (0)