Skip to content

Commit

Permalink
struct gss_buffer_desc.length is a size_t
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 Jun 30, 2014
1 parent 491af83 commit 73e61c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gssapi.c
Expand Up @@ -167,7 +167,7 @@ int socks_gssapi_auth(struct openconnect_info *vpninfo)
}
if (out.length > 65535) {
vpn_progress(vpninfo, PRG_ERR,
_("GSSAPI token too large (%ld bytes)\n"),
_("GSSAPI token too large (%zd bytes)\n"),
out.length);
break;
}
Expand Down

0 comments on commit 73e61c6

Please sign in to comment.