diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2005-10-19 11:33:57 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2005-10-19 11:33:57 +0000 |
commit | 8dc836cf04eaf061fb4ee31bcc771e2297f7630b (patch) | |
tree | 03cf513f99abc17fc9de7351c9323ca2ab0bf357 /stringbuf.h | |
parent | 33232dc70bcd6223c8d47536e913edbb4be0a9f7 (diff) | |
download | rsyslog-8dc836cf04eaf061fb4ee31bcc771e2297f7630b.tar.gz rsyslog-8dc836cf04eaf061fb4ee31bcc771e2297f7630b.tar.xz rsyslog-8dc836cf04eaf061fb4ee31bcc771e2297f7630b.zip |
fixing a bug with the "startswith" comparison mode; more work on BSD-style
host blocks
Diffstat (limited to 'stringbuf.h')
-rwxr-xr-x | stringbuf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stringbuf.h b/stringbuf.h index c4e6492d..3b039358 100755 --- a/stringbuf.h +++ b/stringbuf.h @@ -110,6 +110,7 @@ int rsCStrOffsetSzStrCmp(rsCStrObj *pCS1, int iOffset, char *psz, int iLenSz); int rsCStrLocateSzStr(rsCStrObj *pCStr, char *sz);
int rsCStrLocateInSzStr(rsCStrObj *pThis, char *sz);
int rsCStrStartsWithSzStr(rsCStrObj *pCS1, char *psz, int iLenSz);
+int rsCStrSzStrStartsWithCStr(rsCStrObj *pCS1, char *psz, int iLenSz);
/* now come inline-like functions */
#ifdef NDEBUG
|