patches for easier mirroring, to eliminate a special copy, to make www.freebsd.org/security a full copy of security.freebsd.org and be eventually be the same. For now files are just sitting there. The symlinks are missing. Discussed on: www (repository location) Discussed with: simon (so)
22 lines
732 B
Diff
22 lines
732 B
Diff
Index: contrib/sendmail/src/parseaddr.c
|
|
===================================================================
|
|
RCS file: /home/ncvs/src/contrib/sendmail/src/parseaddr.c,v
|
|
retrieving revision 1.1.1.2.6.13
|
|
retrieving revision 1.1.1.2.6.14
|
|
diff -c -p -c -r1.1.1.2.6.13 -r1.1.1.2.6.14
|
|
*** contrib/sendmail/src/parseaddr.c 29 Mar 2003 19:33:17 -0000 1.1.1.2.6.13
|
|
--- contrib/sendmail/src/parseaddr.c 17 Sep 2003 15:18:20 -0000 1.1.1.2.6.14
|
|
*************** prescan(addr, delim, pvpbuf, pvpbsize, d
|
|
*** 700,706 ****
|
|
--- 700,710 ----
|
|
addr[MAXNAME] = '\0';
|
|
returnnull:
|
|
if (delimptr != NULL)
|
|
+ {
|
|
+ if (p > addr)
|
|
+ p--;
|
|
*delimptr = p;
|
|
+ }
|
|
CurEnv->e_to = saveto;
|
|
return NULL;
|
|
}
|