aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/tlsauthentication.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/tlsauthentication.c b/doc/examples/tlsauthentication.c
index ca8187bc..5b2dec1d 100644
--- a/doc/examples/tlsauthentication.c
+++ b/doc/examples/tlsauthentication.c
@@ -54,7 +54,7 @@ string_to_base64 (const char *message)
54 } 54 }
55 55
56 if (length % 3) 56 if (length % 3)
57 strncat (tmp, "===", 3 - length % 3); 57 strncat (tmp, "==", 3 - length % 3);
58 58
59 return tmp; 59 return tmp;
60} 60}