summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTodd C. Miller <Todd.Miller@sudo.ws>2022-05-26 09:19:08 -0600
committerTodd C. Miller <Todd.Miller@sudo.ws>2022-05-26 09:19:08 -0600
commit4432b121f52e622c1199e902802b2e2a5d15ce33 (patch)
tree07d58a6e7eda5b15fc62bb66c6e264953dcdedbb /include
parent4a201e6e893240aa3797b3a0138d46d53a556750 (diff)
downloadsudo-4432b121f52e622c1199e902802b2e2a5d15ce33.tar.gz
Bump plugin minor version and document new intercept-related settings.
There should have been a minor version bump for sudo 1.9.8 when intercept was originally implemented.
Diffstat (limited to 'include')
-rw-r--r--include/sudo_plugin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sudo_plugin.h b/include/sudo_plugin.h
index 873805cdb..032a5fd48 100644
--- a/include/sudo_plugin.h
+++ b/include/sudo_plugin.h
@@ -1,7 +1,7 @@
/*
* SPDX-License-Identifier: ISC
*
- * Copyright (c) 2009-2020 Todd C. Miller <Todd.Miller@sudo.ws>
+ * Copyright (c) 2009-2022 Todd C. Miller <Todd.Miller@sudo.ws>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -21,7 +21,7 @@
/* API version major/minor */
#define SUDO_API_VERSION_MAJOR 1
-#define SUDO_API_VERSION_MINOR 18
+#define SUDO_API_VERSION_MINOR 19
#define SUDO_API_MKVERSION(x, y) (((x) << 16) | (y))
#define SUDO_API_VERSION SUDO_API_MKVERSION(SUDO_API_VERSION_MAJOR, SUDO_API_VERSION_MINOR)