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

clfs-1.2 clfs-2.1 clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since e7a7a6f 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
RevLine 
[69cde8d]1Submitted By: Jim Gifford (patches at jg555 dot com)
2Date: 2005-08-28
3Initial Package Version: 2.12q
4Origin: Joe Ciccone
5Upstream Status: Sent
6Description: Fixes GCC4 Compile Issues
7
8diff -Naur util-linux-2.12q.orig/mount/umount.c util-linux-2.12q/mount/umount.c
9--- util-linux-2.12q.orig/mount/umount.c 2004-12-20 22:03:45.000000000 +0000
10+++ util-linux-2.12q/mount/umount.c 2005-08-29 04:11:27.000000000 +0000
11@@ -40,13 +40,13 @@
12 #include <linux/unistd.h>
13 #ifdef __NR_umount2
14
15-static int umount2(const char *path, int flags);
16+int umount2(const char *path, int flags);
17
18 _syscall2(int, umount2, const char *, path, int, flags);
19
20 #else /* __NR_umount2 */
21
22-static int
23+int
24 umount2(const char *path, int flags) {
25 fprintf(stderr, _("umount: compiled without support for -f\n"));
26 errno = ENOSYS;
Note: See TracBrowser for help on using the repository browser.