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 96340c1 commit 69b6a54Copy full SHA for 69b6a54
src/tlshd/config.c
@@ -46,12 +46,6 @@
46
47
static GKeyFile *tlshd_configuration;
48
49
-/**
50
- * ALLPERMS exists in glibc, but not on musl, so we
51
- * manually define TLSHD_ACCESSPERMS instead of using ALLPERMS.
52
- */
53
-#define TLSHD_ACCESSPERMS (S_IRWXU|S_IRWXG|S_IRWXO)
54
-
55
/**
56
* tlshd_config_init - Read tlshd's config file
57
* @pathname: Pathname to config file
@@ -120,6 +114,12 @@ void tlshd_config_shutdown(void)
120
114
g_key_file_free(tlshd_configuration);
121
115
}
122
116
117
+/**
118
+ * ALLPERMS exists in glibc, but not on musl, so we manually
119
+ * define TLSHD_ACCESSPERMS instead of using ALLPERMS.
+ */
+#define TLSHD_ACCESSPERMS (S_IRWXU|S_IRWXG|S_IRWXO)
+
123
/*
124
* Expected file attributes
125
*/
0 commit comments