diff options
Diffstat (limited to 'src/tipideed/tipideed-internal.h')
-rw-r--r-- | src/tipideed/tipideed-internal.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tipideed/tipideed-internal.h b/src/tipideed/tipideed-internal.h index 3eb0644..a53fc0c 100644 --- a/src/tipideed/tipideed-internal.h +++ b/src/tipideed/tipideed-internal.h @@ -51,6 +51,7 @@ struct global_s uint16_t indexn : 4 ; uint16_t verbosity : 3 ; uint16_t cont : 2 ; + uint16_t ssl : 1 ; } ; #define GLOBAL_ZERO \ { \ @@ -75,7 +76,8 @@ struct global_s .maxcgibody = 0, \ .indexn = 0, \ .verbosity = 1, \ - .cont = 1 \ + .cont = 1, \ + .ssl = 0 \ } extern struct global_s g ; |