diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-27 16:55:48 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-29 22:58:05 +0900 |
| commit | a88d4d648a4ae2d7d7abd23916b49b41c1a867f3 (patch) | |
| tree | 73aacc657e135ab179010d102fdbd7a0a9edc40d /libtdenetwork | |
| parent | 409b67ac0559a06dc58da81fc90f0ba959d6068c (diff) | |
| download | tdepim-a88d4d64.tar.gz tdepim-a88d4d64.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 8f878546e0a859e78dfc2c6ff7f08507347a76ea)
Diffstat (limited to 'libtdenetwork')
| -rw-r--r-- | libtdenetwork/libgpgme-copy/assuan/assuan-pipe-connect.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libtdenetwork/libgpgme-copy/assuan/assuan-pipe-connect.c b/libtdenetwork/libgpgme-copy/assuan/assuan-pipe-connect.c index 8ee9c748..354baecf 100644 --- a/libtdenetwork/libgpgme-copy/assuan/assuan-pipe-connect.c +++ b/libtdenetwork/libgpgme-copy/assuan/assuan-pipe-connect.c @@ -613,7 +613,7 @@ create_inheritable_pipe (int filedes[2], int for_write) memset (&sec_attr, 0, sizeof sec_attr ); sec_attr.nLength = sizeof sec_attr; - sec_attr.bInheritHandle = FALSE; + sec_attr.bInheritHandle = false; if (!CreatePipe (&r, &w, &sec_attr, 0)) { @@ -623,7 +623,7 @@ create_inheritable_pipe (int filedes[2], int for_write) if (!DuplicateHandle (GetCurrentProcess(), for_write? r : w, GetCurrentProcess(), &h, 0, - TRUE, DUPLICATE_SAME_ACCESS )) + true, DUPLICATE_SAME_ACCESS )) { _assuan_log_printf ("DuplicateHandle failed: %s\n", w32_strerror (-1)); CloseHandle (r); @@ -730,7 +730,7 @@ pipe_connect_w32 (assuan_context_t *ctx, /* Start the process. */ memset (&sec_attr, 0, sizeof sec_attr ); sec_attr.nLength = sizeof sec_attr; - sec_attr.bInheritHandle = FALSE; + sec_attr.bInheritHandle = false; memset (&si, 0, sizeof si); si.cb = sizeof (si); @@ -778,7 +778,7 @@ pipe_connect_w32 (assuan_context_t *ctx, cmdline, /* Command line arguments. */ &sec_attr, /* Process security attributes. */ &sec_attr, /* Thread security attributes. */ - TRUE, /* Inherit handles. */ + true, /* Inherit handles. */ (CREATE_DEFAULT_ERROR_MODE | GetPriorityClass (GetCurrentProcess ()) | CREATE_SUSPENDED), /* Creation flags. */ |
