Support "hide" on named-list definition lines
[exim.git] / src / src / structs.h
index f3fb290c6d1cec6c966b5d6bfbef0a350b01dce4..631e0f263a37c5e9848b88608251a160c913b75a 100644 (file)
@@ -886,9 +886,10 @@ typedef struct namedlist_cacheblock {
 /* Structure for holding data for an entry in a named list */
 
 typedef struct namedlist_block {
-  const uschar *string;              /* the list string */
-  namedlist_cacheblock *cache_data;  /* cached domain_data or localpart_data */
-  int number;                        /* the number of the list for caching */
+  const uschar *string;                        /* the list string */
+  namedlist_cacheblock *cache_data;    /* cached domain_data or localpart_data */
+  int          number:31;              /* the number of the list for caching */
+  BOOL         hide:1;                 /* -bP does not display value */
 } namedlist_block;
 
 /* Structures for Access Control Lists */