| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
https://www.kernel.org/doc/html/v4.10/process/coding-style.html
- Function return values and names
(-Exxx = failure, 0 = success) for imperative commands
(0 = failure, non-zero = success) for predicates
|
|
|
|
|
|
|
|
|
|
| |
https://www.kernel.org/doc/html/v4.10/process/coding-style.html
- Centralized exiting of functions (goto cleanup)
- Function return values and names
(-Exxx = failure, 0 = success) for imperative commands
(0 = failure, non-zero = success) for predicates
- avoid macros that affect control flow
|
| |
|
|
|
|
|
|
|
|
|
|
| |
GPGME_DEBUG to the rescue. this bug caused pass gen and add to fail when
building with gcc and optimization set to anything other than 0.
https://www.gnupg.org/documentation/manuals/gpgme/Encrypting-a-Plaintext.html
> Function: gpgme_error_t gpgme_op_encrypt ...
> ...
> recp must be a NULL-terminated array of keys
|
|
|
|
| |
https://man.openbsd.org/style
|
| |
|
| |
|
| |
|
|
|