CLEANUP: config: remove unused proc_mask()
The function was used to return the mask of enabled processes, but it
now always returns 1 and is not called anymore. Let's drop it.
diff --git a/include/haproxy/global.h b/include/haproxy/global.h
index 9d9a7fc..dcabd7c 100644
--- a/include/haproxy/global.h
+++ b/include/haproxy/global.h
@@ -76,12 +76,6 @@
return 0;
}
-/* returns a mask if set, otherwise 1 */
-static inline unsigned long proc_mask(unsigned long mask)
-{
- return mask ? mask : 1;
-}
-
extern unsigned int experimental_directives_allowed;
struct cfg_keyword;