1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Update to 2.4.124d

This commit is contained in:
Johan van Selst 2009-11-01 22:04:24 +00:00
parent fbb80c4908
commit dc31aa0368
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=243624
3 changed files with 9 additions and 3 deletions

View File

@ -82,7 +82,7 @@ OPTIONS= ELM_ICONV "libiconv support" on \
ELM_VERSION= 2.4
ELM_REVISION= 124
ELM_PATCHLEVEL= c # a...z = patch-level, _ means no patch-level.
ELM_PATCHLEVEL= d # a...z = patch-level, _ means no patch-level.
ELM_PATCHDONE= false
.for level in _ a b c d e f g h i j k l m n o p q r s t u v w x y z

View File

@ -10,3 +10,6 @@ SIZE (elm-2.4ME+PL124b.patch.gz) = 5738
MD5 (elm-2.4ME+PL124c.patch.gz) = b4a57afb8ed3ec3571f12312a7af32e7
SHA256 (elm-2.4ME+PL124c.patch.gz) = 321b6895c0c018f0838859c68bd985edd08470e14b002b85fac96e862360022c
SIZE (elm-2.4ME+PL124c.patch.gz) = 4373
MD5 (elm-2.4ME+PL124d.patch.gz) = b4cfe09981531fad536ddc91ff425ff3
SHA256 (elm-2.4ME+PL124d.patch.gz) = 7c2b24905e5f2375b339bb208040a410119da2ce24c379f4e6e4ebf64d3a37a1
SIZE (elm-2.4ME+PL124d.patch.gz) = 29832

View File

@ -32,17 +32,20 @@
if (!cur_editcharset)
cur_editcharset = display_charset;
@@ -523,12 +539,15 @@
@@ -523,15 +539,18 @@
hdr->env_from);
} else if (attribution[0] && hdr) {
+ char * date = us2s(stream_from_string(Date_buffer,1,NULL));
+
if (From_buffer) {
char * str = us2s(stream_from_string(From_buffer,1,NULL));
struct string * tmp1 = convert_string(cur_editcharset,
From_buffer,1);
char * str = us2s(stream_from_string(tmp1,1,NULL));
- fprintf(reply, attribution, str);
+ fprintf(reply, attribution, str, date);
free(str);
free_string(&tmp1);
} else
- fprintf(reply, attribution, hdr->env_from);
+ fprintf(reply, attribution, hdr->env_from, date);