#
#  User-Name is "bob", and a switch statement
#  with no "default" should not crash the server.
#
switch &User-Name {
	case "doug" {
		update reply {
			Filter-Id := "doug"
		}
	}
}

if (&reply:Filter-Id) {
	update reply {
		Filter-Id := "fail 1"
	}
}
else {
	update reply {
		Filter-Id := "filter"
	}
}