Fixed change from v1 of auth file to v2
This commit is contained in:
parent
27ee6923df
commit
a0a2d74361
2 changed files with 8 additions and 8 deletions
|
@ -762,6 +762,9 @@ void print_service_message (struct message *M) {
|
|||
push_color (COLOR_GREY);
|
||||
|
||||
push_color (COLOR_MAGENTA);
|
||||
if (msg_num_mode) {
|
||||
printf ("%d ", M->id);
|
||||
}
|
||||
print_date (M->date);
|
||||
pop_color ();
|
||||
printf (" ");
|
||||
|
|
13
loop.c
13
loop.c
|
@ -270,13 +270,11 @@ int loop (void) {
|
|||
if (verbosity) {
|
||||
logprintf ("DC_info: %d new DC got\n", new_dc_num);
|
||||
}
|
||||
if (new_dc_num) {
|
||||
int i;
|
||||
for (i = 0; i <= MAX_DC_NUM; i++) if (DC_list[i] && !DC_list[i]->auth_key_id) {
|
||||
dc_authorize (DC_list[i]);
|
||||
assert (DC_list[i]->auth_key_id);
|
||||
write_auth_file ();
|
||||
}
|
||||
int i;
|
||||
for (i = 0; i <= MAX_DC_NUM; i++) if (DC_list[i] && !DC_list[i]->auth_key_id) {
|
||||
dc_authorize (DC_list[i]);
|
||||
assert (DC_list[i]->auth_key_id);
|
||||
write_auth_file ();
|
||||
}
|
||||
|
||||
if (auth_state == 100) {
|
||||
|
@ -362,7 +360,6 @@ int loop (void) {
|
|||
}
|
||||
}
|
||||
|
||||
int i;
|
||||
for (i = 0; i <= MAX_DC_NUM; i++) if (DC_list[i] && !DC_list[i]->has_auth) {
|
||||
do_export_auth (i);
|
||||
do_import_auth (i);
|
||||
|
|
Loading…
Add table
Reference in a new issue