From b4f0bae5237cc65b4b71ffe25f1c603be835c917 Mon Sep 17 00:00:00 2001 From: Kevin Reed Date: Thu, 3 May 2018 15:54:42 -0500 Subject: [PATCH] server: db_dump shouldn't export create_time for user_deleted or host_deleted --- sched/db_dump.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/sched/db_dump.cpp b/sched/db_dump.cpp index ffc40cfe1f..bd0aea6e78 100644 --- a/sched/db_dump.cpp +++ b/sched/db_dump.cpp @@ -307,11 +307,9 @@ void write_host_deleted(HOST_DELETED& host_deleted, FILE* f) { "\n" " %lu\n" " %s\n" - " %d\n" "\n", host_deleted.id, - host_deleted.public_cross_project_id, - host_deleted.create_time + host_deleted.public_cross_project_id ); } @@ -435,11 +433,9 @@ void write_user_deleted(USER_DELETED& user_deleted, FILE* f) { "\n" " %lu\n" " %s\n" - " %d\n" "\n", user_deleted.id, - user_deleted.public_cross_project_id, - user_deleted.create_time + user_deleted.public_cross_project_id ); }