From c682577a243902164de1d80f38425a66a4853d82 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Mon, 6 May 2013 12:00:00 +0200 Subject: Revert "Add formal argument 'secret' to two public functions." This reverts commit 09d1cff2418a900b587b2113f508984f2417cc11. Conflicts: lib/include/radsec/request.h --- lib/request.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lib/request.c') diff --git a/lib/request.c b/lib/request.c index 9ad7843..5649ee1 100644 --- a/lib/request.c +++ b/lib/request.c @@ -51,8 +51,7 @@ int rs_request_create_authn (struct rs_connection *conn, struct rs_request **req_out, const char *user_name, - const char *user_pw, - const char *secret) + const char *user_pw) { struct rs_request *req = NULL; assert (req_out); @@ -60,7 +59,7 @@ rs_request_create_authn (struct rs_connection *conn, if (rs_request_create (conn, &req)) return -1; - if (rs_packet_create_authn_request (conn, &req->req_msg, user_name, user_pw, secret)) + if (rs_packet_create_authn_request (conn, &req->req_msg, user_name, user_pw)) return -1; if (req_out) -- cgit v1.1 From f0df8b47b0c7639ab3842c2b92c80f70b8ed66d3 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Thu, 9 May 2013 09:49:37 +0200 Subject: Update copyright years. --- lib/request.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/request.c') diff --git a/lib/request.c b/lib/request.c index 5649ee1..3a8b6dd 100644 --- a/lib/request.c +++ b/lib/request.c @@ -1,5 +1,5 @@ -/* Copyright 2010, 2011 NORDUnet A/S. All rights reserved. - See LICENSE for licensing information. */ +/* Copyright 2010-2011 NORDUnet A/S. All rights reserved. + See LICENSE for licensing information. */ #if defined HAVE_CONFIG_H #include -- cgit v1.1