mirror of
git://git.code.sf.net/p/dhcpd-pools/code
synced 2025-12-18 08:47:00 +00:00
config: remove unnecessary padding
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
parent
2ecfc86a06
commit
c7e0058994
2 changed files with 2 additions and 7 deletions
|
|
@ -127,7 +127,6 @@ struct shared_network_t {
|
|||
double backups;
|
||||
struct shared_network_t *next;
|
||||
int netmask;
|
||||
uint32_t pad;
|
||||
};
|
||||
|
||||
/*! \struct range_t
|
||||
|
|
@ -152,7 +151,6 @@ struct output_helper_t {
|
|||
double tcp;
|
||||
double bup;
|
||||
int status;
|
||||
uint32_t pad;
|
||||
};
|
||||
|
||||
/*! \struct status_counts_t
|
||||
|
|
@ -182,7 +180,6 @@ struct leases_t {
|
|||
char *ethernet;
|
||||
UT_hash_handle hh;
|
||||
enum ltype type;
|
||||
uint32_t pad;
|
||||
};
|
||||
|
||||
/*! \enum limbits
|
||||
|
|
@ -251,8 +248,7 @@ struct conf_t {
|
|||
skip_critical:1, /*!< Skip critical values from output. */
|
||||
skip_minsize:1, /*!< Skip alarming values that are below minsize from output. */
|
||||
skip_suppressed:1, /*!< Skip alarming values that are suppressed with --snet-alarms option, or they are shared networks without IP availability. */
|
||||
color_mode:2, /*!< Indicator if colors should be used in output. */
|
||||
pad_bits:4;
|
||||
color_mode:2; /*!< Indicator if colors should be used in output. */
|
||||
};
|
||||
|
||||
/* Function prototypes */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue