Skip to content

Commit

Permalink
Fix problem on Pi caused by unsigned char being default.
Browse files Browse the repository at this point in the history
Found via #849.

Signed-off-by: Roger A. Light <roger@atchoo.org>
  • Loading branch information
ralight committed Oct 28, 2018
1 parent 0bd7cf8 commit 79a8c5a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions ChangeLog.txt
Expand Up @@ -14,6 +14,8 @@ Broker:
just reach it. This was inconsistent in two places.
- Fix segfault on startup if bridge CA certificates could not be read.
Closes #851.
- Fix problem opening listeners on Pi caused by unsigned char being default.
Found via #849.

Library:
- Fix some places where return codes were incorrect, including to the
Expand Down
2 changes: 1 addition & 1 deletion src/mosquitto_broker_internal.h
Expand Up @@ -199,7 +199,7 @@ struct mosquitto__security_options {
char *acl_file;
struct mosquitto__auth_plugin_config *auth_plugin_configs;
int auth_plugin_config_count;
char allow_anonymous;
int8_t allow_anonymous;
bool allow_zero_length_clientid;
char *auto_id_prefix;
int auto_id_prefix_len;
Expand Down

0 comments on commit 79a8c5a

Please sign in to comment.