Skip to content

Commit

Permalink
Add missing newline on vpn_perror() output
Browse files Browse the repository at this point in the history
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
  • Loading branch information
David Woodhouse authored and David Woodhouse committed Jan 6, 2015
1 parent a4d7c75 commit 503bd8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openconnect-internal.h
Expand Up @@ -499,7 +499,7 @@ struct openconnect_info {
#define AC_PKT_TERM_SERVER 9 /* Server kick */

#define vpn_progress(vpninfo, ...) (vpninfo)->progress((vpninfo)->cbdata, __VA_ARGS__)
#define vpn_perror(vpninfo, msg) vpn_progress((vpninfo), PRG_ERR, "%s: %s", (msg), strerror(errno));
#define vpn_perror(vpninfo, msg) vpn_progress((vpninfo), PRG_ERR, "%s: %s\n", (msg), strerror(errno));

/****************************************************************************/
/* Oh Solaris how we hate thee! */
Expand Down

0 comments on commit 503bd8c

Please sign in to comment.