Skip to content
This repository has been archived by the owner on Mar 12, 2019. It is now read-only.

Commit

Permalink
fix be-psk invocation
Browse files Browse the repository at this point in the history
	closes #154
  • Loading branch information
jpmens committed Dec 22, 2016
1 parent 4bb8b4e commit 472c995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auth-plug.c
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ int mosquitto_auth_psk_key_get(void *userdata, const char *hint, const char *ide
for (bep = ud->be_list; bep && *bep; bep++) {
struct backend_p *b = *bep;
if (!strcmp(database, b->name)) {
psk_key = b->getuser(b->conf, username);
psk_key = b->getuser(b->conf, username, NULL, 0);
break;
}

Expand Down

0 comments on commit 472c995

Please sign in to comment.