X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/ef213c3b49bcc37a2882f81a76755f114c2a81cb..b1c749bb7f147e7f9215fe6067c848cf02938b92:/src/src/deliver.c diff --git a/src/src/deliver.c b/src/src/deliver.c index c183c86ea..2568c9770 100644 --- a/src/src/deliver.c +++ b/src/src/deliver.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/deliver.c,v 1.17 2005/06/14 13:48:40 ph10 Exp $ */ +/* $Cambridge: exim/src/src/deliver.c,v 1.18 2005/06/16 14:10:13 ph10 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -4482,8 +4482,8 @@ if ((rc = spool_read_header(spoolname, TRUE, TRUE)) != spool_read_OK) sprintf(CS big_buffer, "%s/input/%s/%s", spool_directory, message_subdir, spoolname); if (Ustat(big_buffer, &statbuf) == 0) - log_write(0, LOG_MAIN, "Format error in spool file %s: size=%.30g", - spoolname, (double)statbuf.st_size); + log_write(0, LOG_MAIN, "Format error in spool file %s: " + "size=" OFF_T_FMT, spoolname, statbuf.st_size); else log_write(0, LOG_MAIN, "Format error in spool file %s", spoolname); } else @@ -6345,8 +6345,8 @@ wording. */ if (emf_text != NULL) fprintf(f, "%s", CS emf_text); else { fprintf(f, -"------ The body of the message is %.30g characters long; only the first\n" -"------ %d or so are included here.\n", (double)statbuf.st_size, max); +"------ The body of the message is " OFF_T_FMT " characters long; only the first\n" +"------ %d or so are included here.\n", statbuf.st_size, max); } } }