Re: [Openvpn-devel] [PATCH 3/3] windows: list all enum values in switch block

2021-05-02 Thread Arne Schwabe
Am 01.05.21 um 15:06 schrieb Antonio Quartulli: > From: Antonio Quartulli > > A switch block in interactive.c is missing the _undo_type_max value > of the neum set, thus triggering a compiler warning. > > Due to the logic, this value cannot really be assigned to the variable > being examinated,

[Openvpn-devel] [PATCH 3/3] windows: list all enum values in switch block

2021-05-01 Thread Antonio Quartulli
From: Antonio Quartulli A switch block in interactive.c is missing the _undo_type_max value of the neum set, thus triggering a compiler warning. Due to the logic, this value cannot really be assigned to the variable being examinated, however, add the missing enum value to silence the warning. F