(mh_file_to_message): Change signature
Showing
2 changed files
with
2 additions
and
2 deletions
... | @@ -239,7 +239,7 @@ void mh_init (void); | ... | @@ -239,7 +239,7 @@ void mh_init (void); |
239 | void mh_init2 (void); | 239 | void mh_init2 (void); |
240 | void mh_read_profile (void); | 240 | void mh_read_profile (void); |
241 | int mh_read_formfile (char *name, char **pformat); | 241 | int mh_read_formfile (char *name, char **pformat); |
242 | mu_message_t mh_file_to_message (char *folder, char *file_name); | 242 | mu_message_t mh_file_to_message (const char *folder, char *file_name); |
243 | mu_message_t mh_stream_to_message (mu_stream_t stream); | 243 | mu_message_t mh_stream_to_message (mu_stream_t stream); |
244 | void mh_install (char *name, int automode); | 244 | void mh_install (char *name, int automode); |
245 | 245 | ... | ... |
... | @@ -566,7 +566,7 @@ mh_file_copy (const char *from, const char *to) | ... | @@ -566,7 +566,7 @@ mh_file_copy (const char *from, const char *to) |
566 | } | 566 | } |
567 | 567 | ||
568 | mu_message_t | 568 | mu_message_t |
569 | mh_file_to_message (char *folder, char *file_name) | 569 | mh_file_to_message (const char *folder, char *file_name) |
570 | { | 570 | { |
571 | struct stat st; | 571 | struct stat st; |
572 | int rc; | 572 | int rc; | ... | ... |
-
Please register or sign in to post a comment