X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fpfm-write.c;h=ef94831e6ff45458a334abb0e64ea3ecc0474879;hb=6d2a8977cc6a54e9e2278467f2af3d5ae277cd43;hp=c3562f34c437b594ca16f99c48b14ff4915f80ef;hpb=8cf495e615e4feca5777f3592de98321d4fcdc0b;p=pspp diff --git a/src/pfm-write.c b/src/pfm-write.c index c3562f34c4..ef94831e6f 100644 --- a/src/pfm-write.c +++ b/src/pfm-write.c @@ -106,7 +106,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 (handle_get_filename (fh), O_WRONLY | O_CREAT | O_TRUNC, mode); + fd = open (fh_get_filename (fh), O_WRONLY | O_CREAT | O_TRUNC, mode); if (fd < 0) goto open_error; @@ -163,7 +163,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."), - handle_get_filename (fh), strerror (errno)); + fh_get_filename (fh), strerror (errno)); err_cond_fail (); goto error; } @@ -199,7 +199,7 @@ buf_write (struct pfm_writer *w, const void *buf_, size_t nbytes) error: msg (ME, _("%s: Writing portable file: %s."), - handle_get_filename (w->fh), strerror (errno)); + fh_get_filename (w->fh), strerror (errno)); return 0; } @@ -466,7 +466,7 @@ pfm_close_writer (struct pfm_writer *w) if (fclose (w->file) == EOF) msg (ME, _("%s: Closing portable file: %s."), - handle_get_filename (w->fh), strerror (errno)); + fh_get_filename (w->fh), strerror (errno)); } free (w->vars);