indent has problems with comments that are on the right hand side of a line.
Sometimes it fails to format them very well, and sometimes it corrupts them! This commit moves some particularly problematic ones. Reviewed-by: Tim Hudson <tjh@openssl.org>
This commit is contained in:
@@ -140,8 +140,8 @@
|
||||
* OTHERWISE.
|
||||
*/
|
||||
|
||||
#define _BSD_SOURCE 1 /* Or gethostname won't be declared properly
|
||||
on Linux and GNU platforms. */
|
||||
/* Or gethostname won't be declared properly on Linux and GNU platforms. */
|
||||
#define _BSD_SOURCE 1
|
||||
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
@@ -155,8 +155,8 @@
|
||||
#include "e_os.h"
|
||||
|
||||
#ifdef OPENSSL_SYS_VMS
|
||||
#define _XOPEN_SOURCE 500 /* Or isascii won't be declared properly on
|
||||
VMS (at least with DECompHP C). */
|
||||
/* Or isascii won't be declared properly on VMS (at least with DECompHP C). */
|
||||
#define _XOPEN_SOURCE 500
|
||||
#endif
|
||||
|
||||
#include <ctype.h>
|
||||
@@ -186,11 +186,13 @@
|
||||
#endif
|
||||
#include <openssl/bn.h>
|
||||
|
||||
#define _XOPEN_SOURCE_EXTENDED 1 /* Or gethostname won't be declared properly
|
||||
on Compaq platforms (at least with DEC C).
|
||||
Do not try to put it earlier, or IPv6 includes
|
||||
get screwed...
|
||||
*/
|
||||
/*
|
||||
* Or gethostname won't be declared properly
|
||||
* on Compaq platforms (at least with DEC C).
|
||||
* Do not try to put it earlier, or IPv6 includes
|
||||
* get screwed...
|
||||
*/
|
||||
#define _XOPEN_SOURCE_EXTENDED 1
|
||||
|
||||
#ifdef OPENSSL_SYS_WINDOWS
|
||||
#include <winsock.h>
|
||||
|
||||
Reference in New Issue
Block a user