Lines Matching defs:tmp_user
324 struct replicator_user *user, tmp_user;
332 i_zero(&tmp_user);
337 str_to_time(args[2], &tmp_user.last_update) < 0 ||
338 str_to_time(args[3], &tmp_user.last_fast_sync) < 0 ||
339 str_to_time(args[4], &tmp_user.last_full_sync) < 0)
341 tmp_user.priority = priority;
342 tmp_user.last_sync_failed = args[5][0] != '0';
345 if (str_to_time(args[7], &tmp_user.last_successful_sync) < 0)
348 tmp_user.last_successful_sync = 0;
354 if (user->last_update > tmp_user.last_update) {
358 if (user->last_update == tmp_user.last_update) {
361 if (user->priority > tmp_user.priority)
366 tmp_user.priority);
367 user->last_update = tmp_user.last_update;
368 user->last_fast_sync = tmp_user.last_fast_sync;
369 user->last_full_sync = tmp_user.last_full_sync;
370 user->last_successful_sync = tmp_user.last_successful_sync;
371 user->last_sync_failed = tmp_user.last_sync_failed;