diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-05-20 17:24:35 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-05-20 17:24:35 +0000 |
commit | bb59a4ed772b6b48b84f26d592bd990ed71efcc3 (patch) | |
tree | 8cc998688b1137e99583409bf93b2feeda088a40 /mail/pfqueue | |
parent | db82381f174d3a75c8ef872310e8c90805227b9b (diff) | |
download | ports-bb59a4ed772b6b48b84f26d592bd990ed71efcc3.tar.gz ports-bb59a4ed772b6b48b84f26d592bd990ed71efcc3.zip |
- Fix build with gcc-2.95
Notes
Notes:
svn path=/head/; revision=135718
Diffstat (limited to 'mail/pfqueue')
-rw-r--r-- | mail/pfqueue/files/patch-pfqueue.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mail/pfqueue/files/patch-pfqueue.c b/mail/pfqueue/files/patch-pfqueue.c new file mode 100644 index 000000000000..4a494feb9dd5 --- /dev/null +++ b/mail/pfqueue/files/patch-pfqueue.c @@ -0,0 +1,14 @@ +--- pfqueue.c.orig Fri May 20 12:26:17 2005 ++++ pfqueue.c Fri May 20 19:21:56 2005 +@@ -562,9 +562,10 @@ + + // Sets the list window title + void win_listtitle() { ++ char buf[BUF_SIZE]; ++ + wattron ( lwnd, A_BOLD ); + +- char buf[BUF_SIZE]; + sprintf ( buf, "Queue: '%s', %d message%s, %d tagged %s %s %s", + q_names[CURQ], NUMMSG, + ( NUMMSG != 1 ? "s" : "" ), |