summaryrefslogtreecommitdiff
path: root/lib/examples
diff options
context:
space:
mode:
authorLuke Howard <lukeh@padl.com>2011-11-14 12:43:48 +1100
committerLuke Howard <lukeh@padl.com>2011-11-14 12:43:48 +1100
commit3fd136cdbc85ddff5ed0a5953ee1827b9a948748 (patch)
tree3f107214f42f51be4b465057d3948c2862ad9177 /lib/examples
parenta13cddc1331aa1f5e7dca7d1b44482951d2757bf (diff)
remove rs_context_init_freeradius_dict
Diffstat (limited to 'lib/examples')
-rw-r--r--lib/examples/client-blocking.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/examples/client-blocking.c b/lib/examples/client-blocking.c
index 419be8c..509e68a 100644
--- a/lib/examples/client-blocking.c
+++ b/lib/examples/client-blocking.c
@@ -31,8 +31,6 @@ blocking_client (const char *av1, const char *av2, int use_request_object_flag)
{
struct rs_peer *server;
- if (rs_context_init_freeradius_dict (h, "/usr/share/freeradius/dictionary"))
- goto cleanup;
if (rs_conn_create (h, &conn, NULL))
goto cleanup;
rs_conn_set_type (conn, RS_CONN_TYPE_UDP);
@@ -48,8 +46,6 @@ blocking_client (const char *av1, const char *av2, int use_request_object_flag)
#else /* defined (USE_CONFIG_FILE) */
if (rs_context_read_config (h, av1))
goto cleanup;
- if (rs_context_init_freeradius_dict (h, NULL))
- goto cleanup;
if (rs_conn_create (h, &conn, av2))
goto cleanup;
#endif /* defined (USE_CONFIG_FILE) */