We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ef0643 commit 7b2c9c5Copy full SHA for 7b2c9c5
cpp/ql/src/semmle/code/cpp/commons/unix/Constants.qll
@@ -20,10 +20,10 @@ int parseOctal(string input) {
20
)
21
}
22
23
-/** Gets the number corresponding to the set-user-ID on execute bit in Unix. */
+/** Gets the number corresponding to the "set-user-ID on execute bit" in Unix. */
24
int s_isuid() { result = parseOctal("04000") }
25
26
-/** Gets the number corresponding to the set-group-ID on execute bit in Unix. */
+/** Gets the number corresponding to the "set-group-ID on execute bit" in Unix. */
27
int s_isgid() { result = parseOctal("02000") }
28
29
/** Gets the number corresponding to the sticky bit in Unix. */
0 commit comments