]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Fix comment
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Sun, 20 Jun 2021 16:36:02 +0000 (11:36 -0500)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Sun, 20 Jun 2021 16:41:43 +0000 (11:41 -0500)
src/lib/tls/log.c

index a04a00d93be8c2aad4aa4be673d642fa3e62a6fb..ace13a2043fa37c26937ec1d4d206d28106c8fe0 100644 (file)
@@ -429,7 +429,7 @@ static int tls_log_request_bio_write_cb(BIO *bio, char const *in, int len)
        fr_sbuff_in_bstrncpy(&lb->sbuff, in, len);
 
        /*
-        *      Split incoming data on new lines or nul bytes.
+        *      Split incoming data on new lines
         */
        while (fr_sbuff_behind(&lb->logged_m)) {
                le = memchr(fr_sbuff_current(&lb->logged_m), '\n',
@@ -492,7 +492,7 @@ static int tls_log_global_bio_write_cb(BIO *bio, char const *in, int len)
        fr_sbuff_in_bstrncpy(&lb->sbuff, in, len);
 
        /*
-        *      Split incoming data on new lines or nul bytes.
+        *      Split incoming data on new lines
         */
        while (fr_sbuff_behind(&lb->logged_m)) {
                le = memchr(fr_sbuff_current(&lb->logged_m), '\n',