diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-27 17:48:15 -0400 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-27 19:23:14 -0400 |
commit | 148deaba00b5710135ebf4f6ff0577d4a9483654 (patch) | |
tree | 26ea81e1c8d34fb34be9a5287912764a9360b1af /libdhcp/dhcp_client.c | |
parent | 203f2b67c0bea9646b4cf18bafba6e735df4efe3 (diff) |
libdhcp: Reword a comment
I had to re-read it 3 times before I understood what it was trying to
say.
Diffstat (limited to 'libdhcp/dhcp_client.c')
-rw-r--r-- | libdhcp/dhcp_client.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libdhcp/dhcp_client.c b/libdhcp/dhcp_client.c index 13dc292..57a2f60 100644 --- a/libdhcp/dhcp_client.c +++ b/libdhcp/dhcp_client.c @@ -179,9 +179,10 @@ static const char *state_strs[] = { }; /** - * For convenience in switch blocks, a list of the states that, when - * msgtyp==DHCP_MSGTYP_REQUEST, dhcp_client_send() has assert()ed the state is - * not. + * IMPOSSIBLE_REQUEST_STATES is a convenience macro for use in switch + * blocks; it is a list of the states that (when + * msgtyp==DHCP_MSGTYP_REQUEST) dhcp_client_send() has assert()ed the + * state is not. */ #define IMPOSSIBLE_REQUEST_STATES \ STATE_INIT: \ |