Skip to content

Commit

Permalink
Disable vJUD by default also in mod_vcard_ldap source code
Browse files Browse the repository at this point in the history
  • Loading branch information
badlop committed Nov 13, 2015
1 parent f6d8f47 commit 53d72bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mod_vcard_ldap.erl
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
{serverhost = <<"">> :: binary(),
myhost = <<"">> :: binary(),
eldap_id = <<"">> :: binary(),
search = true :: boolean(),
search = false :: boolean(),
servers = [] :: [binary()],
backups = [] :: [binary()],
port = ?LDAP_PORT :: inet:port_number(),
Expand Down Expand Up @@ -735,7 +735,7 @@ parse_options(Host, Opts) ->
<<"vjud.@HOST@">>),
Search = gen_mod:get_opt(search, Opts,
fun(B) when is_boolean(B) -> B end,
true),
false),
Matches = gen_mod:get_opt(matches, Opts,
fun(infinity) -> 0;
(I) when is_integer(I), I>0 -> I
Expand Down

0 comments on commit 53d72bd

Please sign in to comment.