X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fopen-safer.c;h=17f7600fff6a6670fd76c85b01f0aadaf4066d79;hb=387c96fc38b1985d677a25881ab99a449a00af22;hp=48d558fa5758f314b0fa74056a9957d6df36ad6d;hpb=2514e7d5af226b15be3f737286b3ff8c0c91d761;p=gnulib.git diff --git a/lib/open-safer.c b/lib/open-safer.c index 48d558fa5..17f7600ff 100644 --- a/lib/open-safer.c +++ b/lib/open-safer.c @@ -1,6 +1,6 @@ /* Invoke open, but avoid some glitches. - Copyright (C) 2005, 2006, 2008-2009 Free Software Foundation, Inc. + Copyright (C) 2005-2006, 2008-2012 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 @@ -36,7 +36,7 @@ open_safer (char const *file, int flags, ...) va_start (ap, flags); /* We have to use PROMOTED_MODE_T instead of mode_t, otherwise GCC 4 - creates crashing code when 'mode_t' is smaller than 'int'. */ + creates crashing code when 'mode_t' is smaller than 'int'. */ mode = va_arg (ap, PROMOTED_MODE_T); va_end (ap);