]>
www.infradead.org Git - users/dwmw2/openconnect.git/commit
fix <select>/<option> parsing bug
The Juniper form-handling code was setting <select>/<option> labels
identically to their values.
Presumably, this was never caught before because they never actually differ
in real Juniper login forms? (but they do in F5 forms)
That is, a Juniper <option> field always looks like…
<select name="realm">
<option value="Something">Something</option>
<option value="Another">Another</option>
</select>
… and never like this:
<select name="realm">
<option value="group1">Something</option>
<option value="group2">Another</option>
</select>
Signed-off-by: Daniel Lenski <dlenski@gmail.com>