summaryrefslogtreecommitdiffstats
path: root/lib/utils_disk.c
diff options
context:
space:
mode:
authorMatthias Eble <psychotrahe@users.sourceforge.net>2007-09-22 17:40:35 (GMT)
committerMatthias Eble <psychotrahe@users.sourceforge.net>2007-09-22 17:40:35 (GMT)
commitd23b17e6567d8eb983956b36b31a383f3cc639d2 (patch)
tree19ba67a6555bb609875f819af5c4b9c479101820 /lib/utils_disk.c
parent520f297fa931d391f81af672b5b0e34db71b8c73 (diff)
downloadmonitoring-plugins-d23b17e6567d8eb983956b36b31a383f3cc639d2.tar.gz
Added -i/-I to ignore pathes/partitions based on regular expressions
Added check_disk -A selecting all filesystems -E option must now be passed before -p or -r/-R Passing -E after -p or -r results in UNKNOWN state Fixed bug when mixing case sensitive and insensitive regexes git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1786 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'lib/utils_disk.c')
-rw-r--r--lib/utils_disk.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/utils_disk.c b/lib/utils_disk.c
index 96f5a30..3f9c8a9 100644
--- a/lib/utils_disk.c
+++ b/lib/utils_disk.c
@@ -74,6 +74,26 @@ np_add_parameter(struct parameter_list **list, const char *name)
74 return new_path; 74 return new_path;
75} 75}
76 76
77/* Delete a given parameter from list and return pointer to next element*/
78struct parameter_list *
79np_del_parameter(struct parameter_list *item, struct parameter_list *prev)
80{
81 struct parameter_list *next;
82 if (item->name_next)
83 next = item->name_next;
84 else
85 next = NULL;
86
87
88 free(item);
89 if (prev)
90 prev->name_next = next;
91
92 return next;
93
94}
95
96
77/* returns a pointer to the struct found in the list */ 97/* returns a pointer to the struct found in the list */
78struct parameter_list * 98struct parameter_list *
79np_find_parameter(struct parameter_list *list, const char *name) 99np_find_parameter(struct parameter_list *list, const char *name)
@@ -166,3 +186,4 @@ np_regex_match_mount_entry (struct mount_entry* me, regex_t* re)
166 return false; 186 return false;
167 } 187 }
168} 188}
189