Skip to content

Commit

Permalink
jsonrpc-s: use same name when setting user/group via str/int values
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Dec 2, 2016
1 parent cf5a748 commit 1091243
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/jsonrpc-s/jsonrpc-s_mod.c
Expand Up @@ -155,9 +155,9 @@ static param_export_t params[] = {
{"dgram_timeout", PARAM_INT, &jsonrpc_dgram_timeout},
{"dgram_mode", PARAM_INT, &jsonrpc_dgram_unix_socket_mode},
{"dgram_group", PARAM_STRING, &jsonrpc_dgram_unix_socket_gid_s},
{"dgram_group_id", PARAM_INT, &jsonrpc_dgram_unix_socket_gid},
{"dgram_group", PARAM_INT, &jsonrpc_dgram_unix_socket_gid},
{"dgram_user", PARAM_STRING, &jsonrpc_dgram_unix_socket_uid_s},
{"dgram_user_id", PARAM_INT, &jsonrpc_dgram_unix_socket_uid},
{"dgram_user", PARAM_INT, &jsonrpc_dgram_unix_socket_uid},

{0, 0, 0}
};
Expand Down

0 comments on commit 1091243

Please sign in to comment.