Skip to content

Commit

Permalink
one more const issue
Browse files Browse the repository at this point in the history
  • Loading branch information
alandekok committed Sep 25, 2018
1 parent 0fe3b46 commit fe64d9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/proto_radius/proto_radius_tcp.c
Expand Up @@ -104,7 +104,7 @@ static const CONF_PARSER tcp_listen_config[] = {

static ssize_t mod_read(fr_listen_t *li, UNUSED void **packet_ctx, fr_time_t **recv_time, uint8_t *buffer, size_t buffer_len, size_t *leftover, UNUSED uint32_t *priority, UNUSED bool *is_dup)
{
proto_radius_tcp_t *inst = talloc_get_type_abort(li->app_io_instance, proto_radius_tcp_t);
proto_radius_tcp_t *inst = talloc_get_type_abort(li->thread_instance, proto_radius_tcp_t);
ssize_t data_size;
size_t packet_len;
decode_fail_t reason;
Expand Down

0 comments on commit fe64d9b

Please sign in to comment.