diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-06-19 16:07:17 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-06-19 16:07:17 +0200 |
commit | 3abf567d2b57014381eda49018a0e2c21fa1b853 (patch) | |
tree | 6329a682041da705a363efd842740ed8c025b848 /runtime/stringbuf.h | |
parent | 953d015f440224321796105464294006838b5302 (diff) | |
download | rsyslog-3abf567d2b57014381eda49018a0e2c21fa1b853.tar.gz rsyslog-3abf567d2b57014381eda49018a0e2c21fa1b853.tar.xz rsyslog-3abf567d2b57014381eda49018a0e2c21fa1b853.zip |
optimized template string generation
Diffstat (limited to 'runtime/stringbuf.h')
-rw-r--r-- | runtime/stringbuf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/stringbuf.h b/runtime/stringbuf.h index b4fc3f3c..9d2e7865 100644 --- a/runtime/stringbuf.h +++ b/runtime/stringbuf.h @@ -48,7 +48,7 @@ typedef struct cstr_s size_t iBufSize; /**< current maximum size of the string buffer */ size_t iStrLen; /**< length of the string in characters. */ unsigned short iAllocIncrement; /**< the amount of bytes the string should be expanded if it needs to */ - bool bIsFinalized; /**< is this object finished and ready for use? (a debug aid, may be removed later TODO 2009-06-16) */ + bool bIsForeignBuf; /**< is pBuf a buffer provided by someone else? */ } cstr_t; |