Luke Lonergan wrote:
> Bruce,
> 
> > Well, there has been no discussion about removing version 2 support, so
> > it seems it is required.
> 
> This should do it - see attached.

Those parentheses are still there:

      for (start = s; (*s != c) && (s < (start + len)) ; s++)

It should be:

      for (start = s; *s != c && s < start + len; s++)

-- 
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 359-1001
  +  If your life is a hard drive,     |  13 Roberts Road
  +  Christ can be your backup.        |  Newtown Square, Pennsylvania 19073

---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?

               http://www.postgresql.org/docs/faq

Reply via email to