]> diplodocus.org Git - nmh/commitdiff
mhfixmsg.c: Make mhfixmsgsbr() static.
authorRalph Corderoy <ralph@inputplus.co.uk>
Mon, 28 Aug 2017 12:50:41 +0000 (13:50 +0100)
committerRalph Corderoy <ralph@inputplus.co.uk>
Mon, 28 Aug 2017 12:50:41 +0000 (13:50 +0100)
uip/mhfixmsg.c

index d804a6631089e90876e3b995bda7e1ca77862270..eec234179bf68414222b0f4acf9a2dc52067b15d 100644 (file)
@@ -85,8 +85,8 @@ typedef struct fix_transformations {
     char *textcharset;
 } fix_transformations;
 
     char *textcharset;
 } fix_transformations;
 
-int mhfixmsgsbr (CT *, char *, const fix_transformations *, FILE **, char *,
-                 FILE **);
+static int mhfixmsgsbr (CT *, char *, const fix_transformations *,
+    FILE **, char *, FILE **);
 static int fix_boundary (CT *, int *);
 static int copy_input_to_output (const char *, FILE *, const char *, FILE *);
 static int get_multipart_boundary (CT, char **);
 static int fix_boundary (CT *, int *);
 static int copy_input_to_output (const char *, FILE *, const char *, FILE *);
 static int get_multipart_boundary (CT, char **);
@@ -521,7 +521,7 @@ main (int argc, char **argv) {
 /*
  * Apply transformations to one message.
  */
 /*
  * Apply transformations to one message.
  */
-int
+static int
 mhfixmsgsbr (CT *ctp, char *maildir, const fix_transformations *fx,
              FILE **infp, char *outfile, FILE **outfp) {
     /* Store input filename in case one of the transformations, i.e.,
 mhfixmsgsbr (CT *ctp, char *maildir, const fix_transformations *fx,
              FILE **infp, char *outfile, FILE **outfp) {
     /* Store input filename in case one of the transformations, i.e.,