See ChangeLog entry 2002-02-26 14:15 UTC-0500 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2002-02-26 19:11:47 +00:00
parent 47cb8f2514
commit 89ef9acad7
2 changed files with 13 additions and 0 deletions

View File

@@ -7,6 +7,14 @@
For example:
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
; Changes thanks to Alexander's feedback
2002-02-26 17:20 UTC-0500 David G. Holm <dholm@jsd-llc.com>
* .cvsignore
+ Added freebsd and freebsd/* to the CVS ignore list.
2002-02-27 16:30 UTC-0500 David G. Holm <dholm@jsd-llc.com>
* contrib/Makefile
- Removed apollo from the w32 build path, because it now requires
the use of third-party (Apollo) include files.

View File

@@ -83,7 +83,12 @@ ULONG hb_strAt( const char * szSub, ULONG ulSubLen, const char * szText, ULONG u
ulPos++;
}
else if( ulSubPos )
{
/* Go back to the first character after the first match,
or else tests like "22345" $ "012223456789" will fail. */
ulPos -= ( ulSubPos - 1 );
ulSubPos = 0;
}
else
ulPos++;
}