summaryrefslogtreecommitdiffstats
path: root/misc.c
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2007-08-17 08:22:42 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2007-08-17 08:22:42 +0000
commit70f4f82a3517cdb21f66899eac63fbd4543b07f2 (patch)
tree9180589380a99e07c6bf88efb0e24d6f8493cf57 /misc.c
parentdd048438cd8dd3dc8f1c69ca08ded18fd7b9552f (diff)
downloadopenvpn-70f4f82a3517cdb21f66899eac63fbd4543b07f2.tar.gz
openvpn-70f4f82a3517cdb21f66899eac63fbd4543b07f2.tar.xz
openvpn-70f4f82a3517cdb21f66899eac63fbd4543b07f2.zip
AUTO_USERID feature -- if the auth-user-pass option is used
with some argument ARG, then -ARG will be appended to the username string that is sent to the server. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@2259 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/misc.c b/misc.c
index a42ef24..4329711 100644
--- a/misc.c
+++ b/misc.c
@@ -1356,7 +1356,7 @@ get_platform_prefix (void)
}
void
-get_user_pass_auto_userid (struct user_pass *up)
+get_user_pass_auto_userid (struct user_pass *up, const char *tag)
{
struct gc_arena gc = gc_new ();
MD5_CTX ctx;
@@ -1381,6 +1381,8 @@ get_user_pass_auto_userid (struct user_pass *up)
{
buf_printf (&buf, "UNKNOWN");
}
+ if (tag && strcmp (tag, "stdin"))
+ buf_printf (&buf, "-%s", tag);
up->defined = true;
gc_free (&gc);