chiark / gitweb /
rules: Fedora update
[elogind.git] / udev_sysdeps.c
index 3cd12277cf79f605440371b383f603d89fa7de52..9447cca9369054dd1fb53b1235e0114f91792f83 100644 (file)
@@ -1,6 +1,4 @@
 /*
- * udev_sysdeps.c - wrapping of libc features and kernel defines
- *
  * Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
  * Copyright (C) 2005-2006 Kay Sievers <kay.sievers@vrfy.org>
  *
@@ -15,7 +13,7 @@
  * 
  *     You should have received a copy of the GNU General Public License along
  *     with this program; if not, write to the Free Software Foundation, Inc.,
- *     675 Mass Ave, Cambridge, MA 02139, USA.
+ *     51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  *
  */
 
@@ -46,7 +44,6 @@ size_t strlcpy(char *dst, const char *src, size_t size)
        /* If size == 0 there is no space for a final null... */
        if (size)
                *q = '\0';
-
        return bytes;
 }