Commit 72b165e7 authored by Ángel L. Mateo's avatar Ángel L. Mateo
Browse files

Fix locking in freeradius::module::detail

The locking parameter is a Enum['no', 'yes'], so we can't check it as
boolean. The assignment must be to the value of the parameter.
parent d91f194b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@ detail <%= @name %> {
	#
#	locking = yes
<%- if @locking -%>
	locking = <%= @locking == true %>
	locking = <%= @locking %>
<%- end -%>

	#