mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-31 14:25:15 +00:00
Avoid using a leading underbar in defines as they are reserved in
ISO C.
This commit is contained in:
@@ -14,8 +14,8 @@
|
||||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
#ifndef _SUDO_PLUGIN_H
|
||||
#define _SUDO_PLUGIN_H
|
||||
#ifndef SUDO_PLUGIN_H
|
||||
#define SUDO_PLUGIN_H
|
||||
|
||||
/* API version major/minor */
|
||||
#define SUDO_API_VERSION_MAJOR 1
|
||||
@@ -192,4 +192,4 @@ struct sudoers_group_plugin {
|
||||
int (*query)(const char *user, const char *group, const struct passwd *pwd);
|
||||
};
|
||||
|
||||
#endif /* _SUDO_PLUGIN_H */
|
||||
#endif /* SUDO_PLUGIN_H */
|
||||
|
Reference in New Issue
Block a user