Commit 2f8e53d7 authored by FdaSilvaYY's avatar FdaSilvaYY Committed by Rich Salz
Browse files

Fix if/for/while( in docs

parent e8aa8b6c
Loading
Loading
Loading
Loading
+17 −15
Original line number Diff line number Diff line
@@ -94,11 +94,13 @@ server id given, and will fill the rest with pseudo random bytes:
      unsigned int count = 0;
      do {
          RAND_pseudo_bytes(id, *id_len);
              /* Prefix the session_id with the required prefix. NB: If our
          /*
           * Prefix the session_id with the required prefix. NB: If our
           * prefix is too long, clip it - but there will be worse effects
           * anyway, eg. the server could only possibly create 1 session
           * ID (ie. the prefix!) so all future session negotiations will
               * fail due to conflicts. */
           * fail due to conflicts.
           */
          memcpy(id, session_id_prefix,
                 (strlen(session_id_prefix) < *id_len) ?
                    strlen(session_id_prefix) : *id_len);
+4 −4

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+3 −3

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+2 −2

File changed.

Contains only whitespace changes.

+5 −5

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

Loading