X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fpor-file-writer.c;h=202d4c28ab9499a57adcabbdbcd59de889fca847;hb=1ba9ab71de8a6528beaf22de3ee6d2eb697eb61d;hp=5d6d1efabd9cf6f75effac30b79780d3e3f426dc;hpb=dcf9b154cbcaa35c3d8459a201b77eec8bcb30bd;p=pspp-builds.git diff --git a/src/data/por-file-writer.c b/src/data/por-file-writer.c index 5d6d1efa..202d4c28 100644 --- a/src/data/por-file-writer.c +++ b/src/data/por-file-writer.c @@ -19,7 +19,7 @@ #include #include "por-file-writer.h" -#include "message.h" +#include #include #include #include @@ -30,25 +30,23 @@ #include #include #include -#include "alloc.h" +#include #include "case.h" #include "dictionary.h" -#include "message.h" +#include #include "file-handle-def.h" -#include "hash.h" -#include "magic.h" -#include "misc.h" +#include +#include +#include #include "stat-macros.h" -#include "str.h" +#include #include "value-labels.h" #include "variable.h" -#include "version.h" +#include #include "gettext.h" #define _(msgid) gettext (msgid) -#include "debug-print.h" - /* Portable file writer. */ struct pfm_writer { @@ -107,7 +105,7 @@ pfm_open_writer (struct file_handle *fh, struct dictionary *dict, mode = S_IRUSR | S_IRGRP | S_IROTH; if (opts.create_writeable) mode |= S_IWUSR | S_IWGRP | S_IWOTH; - fd = open (fh_get_filename (fh), O_WRONLY | O_CREAT | O_TRUNC, mode); + fd = open (fh_get_file_name (fh), O_WRONLY | O_CREAT | O_TRUNC, mode); if (fd < 0) goto open_error; @@ -164,7 +162,7 @@ pfm_open_writer (struct file_handle *fh, struct dictionary *dict, open_error: msg (ME, _("An error occurred while opening \"%s\" for writing " "as a portable file: %s."), - fh_get_filename (fh), strerror (errno)); + fh_get_file_name (fh), strerror (errno)); goto error; } @@ -447,7 +445,7 @@ pfm_close_writer (struct pfm_writer *w) if (!ok) msg (ME, _("An I/O error occurred writing portable file \"%s\"."), - fh_get_filename (w->fh)); + fh_get_file_name (w->fh)); } fh_close (w->fh, "portable file", "we");