Overview
Comment: | Updated to set umask on startup |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
01c5bfc689acd294355a5937b2210fcb |
User & Date: | rkeene on 2015-03-20 01:50:01 |
Other Links: | manifest | tags |
Context
2015-03-20
| ||
03:13 | Updated to allow users to specify permissions on files by their SHA1 in addition to filename check-in: 79c3658a52 user: rkeene tags: trunk | |
01:50 | Updated to set umask on startup check-in: 01c5bfc689 user: rkeene tags: trunk | |
01:46 | Updated to lowercase permissions read from the database, for security check-in: 0ab26b4975 user: rkeene tags: trunk | |
Changes
Modified appfsd.c from [fe7e6328bd] to [6a6fdd4f92].
︙ | |||
2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 | 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 | + + + + + | } argv0 = argv[0]; argc--; argv++; /* * Set appropriate umask */ umask(022); /* * Set global variables, these should be configuration options. */ appfs_cachedir = APPFS_CACHEDIR; /* * Set global variable for "boot time" to set a time on directories |
︙ |