summaryrefslogtreecommitdiffstats
path: root/runtime/stream.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-02-10 17:46:04 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2011-02-10 17:46:04 +0100
commitdf6bad70d4df6b9142f988bd4ed859555756fd15 (patch)
tree674c1b8244e494028b286ee9dcfe855dc55c878a /runtime/stream.c
parentfce5fe5127c4b2e4ba17a64b8fb9d57b573baec0 (diff)
downloadrsyslog-df6bad70d4df6b9142f988bd4ed859555756fd15.tar.gz
rsyslog-df6bad70d4df6b9142f988bd4ed859555756fd15.tar.xz
rsyslog-df6bad70d4df6b9142f988bd4ed859555756fd15.zip
cosmetic: making comments in stream.c a bit more readable
Diffstat (limited to 'runtime/stream.c')
-rw-r--r--runtime/stream.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/runtime/stream.c b/runtime/stream.c
index 5f4249a8..24dbcc09 100644
--- a/runtime/stream.c
+++ b/runtime/stream.c
@@ -617,12 +617,12 @@ strmReadLine(strm_t *pThis, cstr_t **ppCStr, int mode)
CHKiRet(cstrFinalize(*ppCStr));
}
if (mode == 2){
-/* indented follow-up lines */
+ /* indented follow-up lines */
finished=0;
while(finished == 0){
if ((*ppCStr)->iStrLen == 0){
if(c != '\n') {
-/* nothing in the buffer, and it's not a newline, add it to the buffer */
+ /* nothing in the buffer, and it's not a newline, add it to the buffer */
CHKiRet(cstrAppendChar(*ppCStr, c));
CHKiRet(strmReadChar(pThis, &c));
} else {
@@ -630,7 +630,7 @@ strmReadLine(strm_t *pThis, cstr_t **ppCStr, int mode)
}
} else {
if ((*ppCStr)->pBuf[(*ppCStr)->iStrLen -1 ] != '\n'){
-/* not the first character after a newline, add it to the buffer */
+ /* not the first character after a newline, add it to the buffer */
CHKiRet(cstrAppendChar(*ppCStr, c));
CHKiRet(strmReadChar(pThis, &c));
} else {
@@ -638,7 +638,9 @@ strmReadLine(strm_t *pThis, cstr_t **ppCStr, int mode)
CHKiRet(cstrAppendChar(*ppCStr, c));
CHKiRet(strmReadChar(pThis, &c));
} else {
-/* clean things up by putting the character we just read back into the input buffer and removing the LF character that is currently at the end of the output string */
+ /* clean things up by putting the character we just read back into
+ * the input buffer and removing the LF character that is currently at the
+ * end of the output string */
CHKiRet(strmUnreadChar(pThis, c));
rsCStrTruncate(*ppCStr,1);
finished=1;