X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=send.c;h=32370e34b544f5e14b896bb06af295d4257c0a69;hp=bea5faa956f272341b2774a2e06c3749bc736965;hb=700dbab719f75421b81f8c603d239bbf38cfa6f9;hpb=48d5c7532ee9fdfb5d1d06483ef6bf8e3b09891d diff --git a/send.c b/send.c index bea5faa..32370e3 100644 --- a/send.c +++ b/send.c @@ -178,7 +178,7 @@ static ADDRESS *find_mailing_lists (ADDRESS * t, ADDRESS * c) return top; } -static int edit_address (ADDRESS ** a, /* const */ char *field) +static int edit_address (ADDRESS ** a, const char *field) { char buf[HUGE_STRING]; char *err = NULL; @@ -1076,7 +1076,7 @@ static void fix_end_of_file (const char *data) if ((fp = safe_fopen (data, "a+")) == NULL) return; - fseek (fp, -1, SEEK_END); + fseeko (fp, -1, SEEK_END); if ((c = fgetc (fp)) != '\n') fputc ('\n', fp); safe_fclose (&fp); @@ -1111,8 +1111,8 @@ int ci_send_message (int flags, /* send mode */ char *pgpkeylist = NULL; /* save current value of "pgp_sign_as" */ - char *signas = NULL; - char *tag = NULL, *err = NULL; + char *signas = NULL, *err = NULL; + const char *tag = NULL; char *ctype; int rv = -1;