49d7ad60bf
- update License field to GPLv3 - add gettext-0.17-open-args.patch to fix build from upstream - gettext-tools-tests-lang-gawk-fail.patch, gettext-php-headers.patch, gettext-php-prinf-output-237241.patch, and gettext-xglade-define-xml-major-version-285701.patch are no longer needed - drop superfluous po-mode-init.el source - no need to run autoconf and autoheader when building - pass -findirect-dispatch to gcj to make java binaries ABI independent (jakub,#427796) - move autopoint, gettextize, and /usr/share/gettext/ to main package
26 lines
1015 B
Diff
26 lines
1015 B
Diff
2007-11-07 Jim Meyering <meyering@redhat.com>
|
|
Bruno Haible <bruno@clisp.org>
|
|
|
|
* write-catalog.c (msgdomain_list_print): Fix open() call.
|
|
|
|
--- gettext-tools/src/write-catalog.c 7 Oct 2007 19:35:31 -0000 1.4
|
|
+++ gettext-tools/src/write-catalog.c 7 Nov 2007 11:43:15 -0000
|
|
@@ -1,5 +1,5 @@
|
|
/* GNU gettext - internationalization aids
|
|
- Copyright (C) 1995-1998, 2000-2006 Free Software Foundation, Inc.
|
|
+ Copyright (C) 1995-1998, 2000-2007 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
|
|
@@ -220,7 +220,9 @@
|
|
/* Open the output file. */
|
|
if (!to_stdout)
|
|
{
|
|
- fd = open (filename, O_WRONLY | O_CREAT);
|
|
+ fd = open (filename, O_WRONLY | O_CREAT | O_TRUNC,
|
|
+ /* 0666 in portable POSIX notation: */
|
|
+ S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
|
|
if (fd < 0)
|
|
{
|
|
const char *errno_description = strerror (errno);
|