diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2023-02-11 06:20:24 (GMT) |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2023-02-11 06:20:24 (GMT) |
commit | f867d7b44080fa9716deeff4476275f9a489879f (patch) | |
tree | bc964662fc3300dc626fb6d833d8ed5c8f46eca7 /gl/mountlist.h | |
parent | 9734c439cba0a02b087e50789e94ec9b07754608 (diff) | |
parent | c07206f2ccc2356aa74bc6813a94c2190017d44e (diff) | |
download | monitoring-plugins-f867d7b44080fa9716deeff4476275f9a489879f.tar.gz |
Merge branch 'master' into curlfixes
Diffstat (limited to 'gl/mountlist.h')
-rw-r--r-- | gl/mountlist.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gl/mountlist.h b/gl/mountlist.h index 55877e2..aed7f88 100644 --- a/gl/mountlist.h +++ b/gl/mountlist.h | |||
@@ -1,11 +1,11 @@ | |||
1 | /* mountlist.h -- declarations for list of mounted file systems | 1 | /* mountlist.h -- declarations for list of mounted file systems |
2 | 2 | ||
3 | Copyright (C) 1991-1992, 1998, 2000-2005, 2009-2013 Free Software | 3 | Copyright (C) 1991-1992, 1998, 2000-2005, 2009-2023 Free Software |
4 | Foundation, Inc. | 4 | Foundation, Inc. |
5 | 5 | ||
6 | This program is free software: you can redistribute it and/or modify | 6 | This program is free software: you can redistribute it and/or modify |
7 | it under the terms of the GNU General Public License as published by | 7 | it under the terms of the GNU General Public License as published by |
8 | the Free Software Foundation; either version 3 of the License, or | 8 | the Free Software Foundation, either version 3 of the License, or |
9 | (at your option) any later version. | 9 | (at your option) any later version. |
10 | 10 | ||
11 | This program is distributed in the hope that it will be useful, | 11 | This program is distributed in the hope that it will be useful, |
@@ -14,12 +14,11 @@ | |||
14 | GNU General Public License for more details. | 14 | GNU General Public License for more details. |
15 | 15 | ||
16 | You should have received a copy of the GNU General Public License | 16 | You should have received a copy of the GNU General Public License |
17 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ | 17 | along with this program. If not, see <https://www.gnu.org/licenses/>. */ |
18 | 18 | ||
19 | #ifndef MOUNTLIST_H_ | 19 | #ifndef MOUNTLIST_H_ |
20 | # define MOUNTLIST_H_ | 20 | # define MOUNTLIST_H_ |
21 | 21 | ||
22 | # include <stdbool.h> | ||
23 | # include <sys/types.h> | 22 | # include <sys/types.h> |
24 | 23 | ||
25 | /* A mount table entry. */ | 24 | /* A mount table entry. */ |
@@ -27,15 +26,18 @@ struct mount_entry | |||
27 | { | 26 | { |
28 | char *me_devname; /* Device node name, including "/dev/". */ | 27 | char *me_devname; /* Device node name, including "/dev/". */ |
29 | char *me_mountdir; /* Mount point directory name. */ | 28 | char *me_mountdir; /* Mount point directory name. */ |
29 | char *me_mntroot; /* Directory on filesystem of device used */ | ||
30 | /* as root for the (bind) mount. */ | ||
30 | char *me_type; /* "nfs", "4.2", etc. */ | 31 | char *me_type; /* "nfs", "4.2", etc. */ |
31 | dev_t me_dev; /* Device number of me_mountdir. */ | 32 | dev_t me_dev; /* Device number of me_mountdir. */ |
32 | unsigned int me_dummy : 1; /* Nonzero for dummy file systems. */ | 33 | unsigned int me_dummy : 1; /* Nonzero for dummy file systems. */ |
33 | unsigned int me_remote : 1; /* Nonzero for remote fileystems. */ | 34 | unsigned int me_remote : 1; /* Nonzero for remote file systems. */ |
34 | unsigned int me_type_malloced : 1; /* Nonzero if me_type was malloced. */ | 35 | unsigned int me_type_malloced : 1; /* Nonzero if me_type was malloced. */ |
35 | struct mount_entry *me_next; | 36 | struct mount_entry *me_next; |
36 | }; | 37 | }; |
37 | 38 | ||
38 | struct mount_entry *read_file_system_list (bool need_fs_type); | 39 | struct mount_entry *read_file_system_list (bool need_fs_type) |
40 | _GL_ATTRIBUTE_MALLOC; | ||
39 | void free_mount_entry (struct mount_entry *entry); | 41 | void free_mount_entry (struct mount_entry *entry); |
40 | 42 | ||
41 | #endif | 43 | #endif |