diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-01-06 05:42:34 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-05-19 03:43:28 +0200 |
commit | c3d264b52d2516e00f641ed2f7bb71f367a6400b (patch) | |
tree | 0330ade14a1884063ba86b776abca78848a515bb /onlineupdate/source/libmar/sign | |
parent | e88f080bacabe9d7196813aa6d17132a389c330b (diff) |
use a more libreoffice like formatting
This formatting has been done by an astyle script. The idea is that with
a consistent formatting it is much easier to bring in changes from
Mozilla. Updating the code with the new version, running the astyle
script and then looking through the diff seems like the most sensible
option.
Diffstat (limited to 'onlineupdate/source/libmar/sign')
-rw-r--r-- | onlineupdate/source/libmar/sign/nss_secutil.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/onlineupdate/source/libmar/sign/nss_secutil.h b/onlineupdate/source/libmar/sign/nss_secutil.h index 363c64918068..f599fcce573d 100644 --- a/onlineupdate/source/libmar/sign/nss_secutil.h +++ b/onlineupdate/source/libmar/sign/nss_secutil.h @@ -16,14 +16,16 @@ #include "key.h" #include <stdint.h> -typedef struct { - enum { - PW_NONE = 0, - PW_FROMFILE = 1, - PW_PLAINTEXT = 2, - PW_EXTERNAL = 3 - } source; - char *data; +typedef struct +{ + enum + { + PW_NONE = 0, + PW_FROMFILE = 1, + PW_PLAINTEXT = 2, + PW_EXTERNAL = 3 + } source; + char *data; } secuPWData; #if( defined(_WINDOWS) && !defined(_WIN32_WCE)) |