X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Flanguage%2Fdata-io%2Fdata-writer.c;h=f736568798f1f4a5c12db763560bb849f42159d2;hb=refs%2Fbuilds%2F20100823040503%2Fpspp;hp=b5df59d4605f2535a690aea77e0934eb46ee6a65;hpb=d0371553a98cd169353bf6d211e375e5ffc3a3bd;p=pspp diff --git a/src/language/data-io/data-writer.c b/src/language/data-io/data-writer.c index b5df59d460..f736568798 100644 --- a/src/language/data-io/data-writer.c +++ b/src/language/data-io/data-writer.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-2004, 2006 Free Software Foundation, Inc. + Copyright (C) 1997-2004, 2006, 2010 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -66,9 +66,8 @@ dfm_open_writer (struct file_handle *fh) w = xmalloc (sizeof *w); w->fh = fh_ref (fh); w->lock = lock; - w->rf = replace_file_start (fh_get_file_name (w->fh), "wb", - (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP - | S_IROTH | S_IWOTH), &w->file, NULL); + w->rf = replace_file_start (fh_get_file_name (w->fh), "wb", 0666, + &w->file, NULL); if (w->rf == NULL) { msg (ME, _("An error occurred while opening \"%s\" for writing " @@ -200,7 +199,7 @@ dfm_close_writer (struct dfm_writer *w) } /* Returns the legacy character encoding of data written to WRITER. */ -enum legacy_encoding +const char * dfm_writer_get_legacy_encoding (const struct dfm_writer *writer) { return fh_get_legacy_encoding (writer->fh);