source: patches/util-linux-2.12r-gcc4_fixes-1.patch @ a0a0616

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since a0a0616 was 69cde8d, checked in by Jim Gifford <clfs@…>, 18 years ago

Added: All patches needed for the book.

  • Property mode set to 100644
File size: 809 bytes
  • util-linux-2.12q

    Submitted By: Jim Gifford (patches at jg555 dot com)
    Date: 2005-08-28
    Initial Package Version: 2.12q
    Origin: Joe Ciccone 
    Upstream Status: Sent
    Description: Fixes GCC4 Compile Issues
     
    diff -Naur util-linux-2.12q.orig/mount/umount.c util-linux-2.12q/mount/umount.c
    old new  
    4040#include <linux/unistd.h>
    4141#ifdef __NR_umount2
    4242
    43 static int umount2(const char *path, int flags);
     43int umount2(const char *path, int flags);
    4444
    4545_syscall2(int, umount2, const char *, path, int, flags);
    4646
    4747#else /* __NR_umount2 */
    4848
    49 static int
     49int
    5050umount2(const char *path, int flags) {
    5151        fprintf(stderr, _("umount: compiled without support for -f\n"));
    5252        errno = ENOSYS;
Note: See TracBrowser for help on using the repository browser.