#
#  PRE: if return
#
if (User-Name == "bob") {
	ok

	#
	#  We need this because the "return" below
	#  will prevent the "pap" module from being run
	#  in the "authorize" section.
	#
	control.Auth-Type := ::PAP

	#
	#  Stop processing "authorize", and go to the next section.
	#
	return {	# ERROR
		ok = 1
	}

	#
	#  Shouldn't reach this
	#
	test_fail
}
