aboutsummaryrefslogtreecommitdiffstats
path: root/mail/pine4/files/patch-ba
blob: 84b3429539769db884d4f36e2f520856642e376d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
*** pine/newmail.c.orig Mon Sep 25 15:07:01 2000
--- pine/newmail.c  Tue Sep 26 15:34:24 2000
***************
*** 342,348 ****
                       e->from->personal, NULL),
           ps_global->ttyo->screen_cols);
    else
!     sprintf(from + ((number > 1L) ? 18 : 6), "%s%s%s", 
          e->from->mailbox,
          e->from->host ? "@" : "",
          e->from->host ? e->from->host : "");
--- 342,349 ----
                       e->from->personal, NULL),
           ps_global->ttyo->screen_cols);
    else
!     snprintf(from + ((number > 1L) ? 18 : 6), sizeof(from) - strlen(from),
!                   "%s%s%s", 
          e->from->mailbox,
          e->from->host ? "@" : "",
          e->from->host ? e->from->host : "");