From: Nick Andrew Date: Thu, 9 Apr 2009 15:23:22 +0000 (+1000) Subject: Fix no-password progress report message X-Git-Tag: v1.20~55 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5c1d3272ec246d0ba4028905166ab1058e47c960;p=platform%2Fupstream%2Fopenconnect.git Fix no-password progress report message Clarify that the option is '--no-passwd' not 'nopasswd' (which is the internal name for it). Signed-off-by: Nick Andrew Signed-off-by: David Woodhouse --- diff --git a/http.c b/http.c index 4ce9fe6..a6418cf 100644 --- a/http.c +++ b/http.c @@ -2,6 +2,7 @@ * OpenConnect (SSL + DTLS) VPN client * * Copyright © 2008 Intel Corporation. + * Copyright © 2008 Nick Andrew * * Author: David Woodhouse * @@ -565,7 +566,7 @@ static int parse_xml_response(struct openconnect_info *vpninfo, char *response, } if (vpninfo->nopasswd) { - vpninfo->progress(vpninfo, PRG_ERR, "Asked for password but nopasswd set\n"); + vpninfo->progress(vpninfo, PRG_ERR, "Asked for password but '--no-passwd' set\n"); return -EPERM; }