Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-11-05 01:05:00 +0300
committerAdam Langley <agl@google.com>2015-11-05 23:12:45 +0300
commit5f88999a1edd11d8b5e8a72a627a5714c95373cf (patch)
treef8b11cc4b02f96b596a72247d08b8a88426dbcd0 /include/openssl/err.h
parente57a19203fca0cfe413ad23b08bfce4f8fd59023 (diff)
Fix up several comments and detect problems in the future.
This change fixes up several comments (many of which were spotted by Kenny Root) and also changes doc.go to detect cases where comments don't start with the correct word. (This is a common error.) Since we have docs builders now, these errors will be found automatically in the future. Change-Id: I58c6dd4266bf3bd4ec748763c8762b1a67ae5ab3 Reviewed-on: https://boringssl-review.googlesource.com/6440 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'include/openssl/err.h')
-rw-r--r--include/openssl/err.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/openssl/err.h b/include/openssl/err.h
index 100d608b..40361d79 100644
--- a/include/openssl/err.h
+++ b/include/openssl/err.h
@@ -300,8 +300,8 @@ OPENSSL_EXPORT void ERR_clear_system_error(void);
ERR_put_error(ERR_LIB_##library, 0, reason, __FILE__, __LINE__)
/* OPENSSL_PUT_SYSTEM_ERROR is used by OpenSSL code to add an error from the
- * operating system to the error queue. */
-/* TODO(fork): include errno. */
+ * operating system to the error queue.
+ * TODO(fork): include errno. */
#define OPENSSL_PUT_SYSTEM_ERROR() \
ERR_put_error(ERR_LIB_SYS, 0, 0, __FILE__, __LINE__);