David Levine wrote:
Steven wrote:I see that the first hunk is trying to match on while ((pp = strchr (pp, '''))&& buflen> 3) {That's not right, it should be: while ((pp = strchr (pp, '\''))&& buflen> 3) {
pointers aren't booleans. in BSD style as used in BIND, this would be:
while ((pp = strchr(pp, '\'')) != NULL && buflen > 3) {
--
P Vixie
--
Nmh-workers
https://lists.nongnu.org/mailman/listinfo/nmh-workers
| Previous by Date: | Re: [Nmh-workers] proposed patch for shell metacharacter failure in nmh-1.7, Steven Winikoff |
|---|---|
| Next by Date: | Re: [Nmh-workers] proposed patch for shell metacharacter failure in nmh-1.7, David Levine |
| Previous by Thread: | Re: [Nmh-workers] proposed patch for shell metacharacter failure in nmh-1.7, Steven Winikoff |
| Next by Thread: | Re: [Nmh-workers] proposed patch for shell metacharacter failure in nmh-1.7, David Levine |
| Indexes: | [Date] [Thread] [Top] [All Lists] |