mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-02 03:52:49 -05:00
Adopt C99 <stdbool.h>'s true/false.
This commit includes <stdbool.h> from defs.h and deletes my traditional definitions of TRUE and FALSE, but other than that, it's a 100% mechanical search-and-replace transforming all uses of TRUE and FALSE into the C99-standardised lowercase spellings. No actual types are changed in this commit; that will come next. This is just getting the noise out of the way, so that subsequent commits can have a higher proportion of signal.
This commit is contained in:
@ -46,9 +46,9 @@ PSID get_user_sid(void);
|
||||
* servers, i.e. allowing access only to the current user id and also
|
||||
* only local (i.e. not over SMB) connections.
|
||||
*
|
||||
* If this function returns TRUE, then 'psd' and 'acl' will have been
|
||||
* If this function returns true, then 'psd' and 'acl' will have been
|
||||
* filled in with memory allocated using LocalAlloc (and hence must be
|
||||
* freed later using LocalFree). If it returns FALSE, then instead
|
||||
* freed later using LocalFree). If it returns false, then instead
|
||||
* 'error' has been filled with a dynamically allocated error message.
|
||||
*/
|
||||
int make_private_security_descriptor(DWORD permissions,
|
||||
|
Reference in New Issue
Block a user