Skip to content

Commit

Permalink
Fix some untranslated strings
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 7, 2015
1 parent 4e2ab55 commit f5220f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dtls.c
Expand Up @@ -712,7 +712,7 @@ int dtls_mainloop(struct openconnect_info *vpninfo, int *timeout)
if (!vpninfo->dtls_pkt) {
vpninfo->dtls_pkt = malloc(sizeof(struct pkt) + len);
if (!vpninfo->dtls_pkt) {
vpn_progress(vpninfo, PRG_ERR, "Allocation failed\n");
vpn_progress(vpninfo, PRG_ERR, _("Allocation failed\n"));
break;
}
}
Expand Down
2 changes: 1 addition & 1 deletion mainloop.c
Expand Up @@ -61,7 +61,7 @@ int tun_mainloop(struct openconnect_info *vpninfo, int *timeout)
if (!out_pkt) {
out_pkt = malloc(sizeof(struct pkt) + len);
if (!out_pkt) {
vpn_progress(vpninfo, PRG_ERR, "Allocation failed\n");
vpn_progress(vpninfo, PRG_ERR, _("Allocation failed\n"));
break;
}
out_pkt->len = len;
Expand Down

0 comments on commit f5220f0

Please sign in to comment.