X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=tfc_skein.c;h=7886c2bc4c4002ee57a41c3cf85cb4f2560327c0;hb=ba5ce99d77078a8629779641e8506b74e50fe6af;hp=0917819e241196b7f9459e2dbbb4dea8198306e3;hpb=9ac86c906f37b9b9dce4f018c90d420f947e05a9;p=tfcrypt.git diff --git a/tfc_skein.c b/tfc_skein.c index 0917819..7886c2b 100644 --- a/tfc_skein.c +++ b/tfc_skein.c @@ -225,7 +225,7 @@ _dothat: s = strchr(shash, ' '); if (s && s[1] == ' ') *s = 0; - fd = open(fname, O_RDONLY | O_LARGEFILE); + fd = xxopen(YES, fname, O_RDONLY | O_LARGEFILE); if (fd == -1) { xerror(YES, NO, YES, "%s", fname); exitcode = 1; @@ -277,7 +277,7 @@ _dothat: for (x = 0; fargv[x] && xx; x++) { if (!strcmp(fargv[x], "-")) fd = 0; - else fd = open(fargv[x], O_RDONLY | O_LARGEFILE); + else fd = xxopen(YES, fargv[x], O_RDONLY | O_LARGEFILE); if (fd == -1) { xerror(YES, NO, YES, "%s", fargv[x]); exitcode = 1;