Commit 65e3ca94 65e3ca9447503d5437127b74cb4df8a52165b2b2 by Sergey Poznyakoff

(main): Call mu_register_local_mbox_formats().

1 parent b0e17013
...@@ -165,13 +165,8 @@ main (int argc, char **argv) ...@@ -165,13 +165,8 @@ main (int argc, char **argv)
165 } 165 }
166 166
167 /* Register the desired formats. */ 167 /* Register the desired formats. */
168 { 168 mu_register_local_mbox_formats ();
169 list_t bookie; 169
170 registrar_get_list (&bookie);
171 list_append (bookie, mbox_record);
172 list_append (bookie, path_record);
173 }
174
175 /* Set the signal handlers. */ 170 /* Set the signal handlers. */
176 signal (SIGINT, imap4d_signal); 171 signal (SIGINT, imap4d_signal);
177 signal (SIGQUIT, imap4d_signal); 172 signal (SIGQUIT, imap4d_signal);
......
...@@ -189,12 +189,7 @@ main (int argc, char **argv) ...@@ -189,12 +189,7 @@ main (int argc, char **argv)
189 } 189 }
190 190
191 /* Register the desired formats. */ 191 /* Register the desired formats. */
192 { 192 mu_register_local_mbox_formats ();
193 list_t bookie;
194 registrar_get_list (&bookie);
195 list_append (bookie, mbox_record);
196 list_append (bookie, path_record);
197 }
198 193
199 /* Set the signal handlers. */ 194 /* Set the signal handlers. */
200 signal (SIGINT, pop3d_signal); 195 signal (SIGINT, pop3d_signal);
......