diff options
| author | Doug Rabson <dfr@FreeBSD.org> | 1995-01-11 19:18:30 +0000 | 
|---|---|---|
| committer | Doug Rabson <dfr@FreeBSD.org> | 1995-01-11 19:18:30 +0000 | 
| commit | 410f59d29fa384971e7e71a279a353399e78c28c (patch) | |
| tree | d753987148219d83d374f3fc48e77e3f9c538e48 /mail/procmail/files | |
| parent | So I don't lose track of these (and as a general public service), please (diff) | |
Fixed a sizeof(off_t) != sizeof(int) problem.
Diffstat (limited to 'mail/procmail/files')
| -rw-r--r-- | mail/procmail/files/patch-aa | 19 | 
1 files changed, 19 insertions, 0 deletions
| diff --git a/mail/procmail/files/patch-aa b/mail/procmail/files/patch-aa index 72e54bf28215..3eee51edcd64 100644 --- a/mail/procmail/files/patch-aa +++ b/mail/procmail/files/patch-aa @@ -65,3 +65,22 @@    pnewname:  lastm=nowm;saddr=strcpy(malloc(strlen(saddr)+1),saddr);    	   if(namep)    	      free(namep); +*** src/misc.c.old	Wed Jan 11 18:11:02 1995 +--- src/misc.c	Wed Jan 11 17:40:33 1995 +*************** +*** 290,296 **** +  { if(sp->filled==sp->tspace)			    /* growth limit reached? */ +     { if(!sp->offs) +  	sp->offs=malloc(1); +!      sp->offs=realloc(sp->offs,(sp->tspace+=4)*sizeof sp->offs);   /* expand */ +     } +    sp->offs[sp->filled++]=val;				     /* append to it */ +  } +--- 290,296 ---- +  { if(sp->filled==sp->tspace)			    /* growth limit reached? */ +     { if(!sp->offs) +  	sp->offs=malloc(1); +!      sp->offs=realloc(sp->offs,(sp->tspace+=4)*sizeof(off_t));   /* expand */ +     } +    sp->offs[sp->filled++]=val;				     /* append to it */ +  } | 
