Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
aed9c23e
Commit
aed9c23e
authored
Jun 12, 2004
by
Warren Dukes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
when we create log files, be sure to they're umasked to 066
git-svn-id:
https://svn.musicpd.org/mpd/trunk@1443
09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent
43b35573
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
main.c
src/main.c
+9
-1
No files found.
src/main.c
View file @
aed9c23e
...
...
@@ -124,10 +124,12 @@ void parseOptions(int argc, char ** argv, Options * options) {
argcLeft
--
;
}
else
if
(
strcmp
(
argv
[
i
],
"--create-db"
)
==
0
)
{
options
->
stdOutput
=
1
;
options
->
createDB
=
1
;
argcLeft
--
;
}
else
if
(
strcmp
(
argv
[
i
],
"--update-db"
)
==
0
)
{
options
->
stdOutput
=
1
;
options
->
updateDB
=
1
;
argcLeft
--
;
}
...
...
@@ -289,11 +291,16 @@ void changeToUser(Options * options) {
}
void
openLogFiles
(
Options
*
options
,
FILE
**
out
,
FILE
**
err
)
{
mode_t
prev
;
if
(
options
->
stdOutput
)
{
flushWarningLog
();
return
;
}
/* be sure to create log files w/ rw permissions*/
prev
=
umask
(
0066
);
if
(
NULL
==
(
*
out
=
fopen
(
options
->
logFile
,
"a"
)))
{
ERROR
(
"problem opening file
\"
%s
\"
for writing
\n
"
,
options
->
logFile
);
...
...
@@ -305,6 +312,8 @@ void openLogFiles(Options * options, FILE ** out, FILE ** err) {
options
->
errorFile
);
exit
(
EXIT_FAILURE
);
}
umask
(
prev
);
}
void
openDB
(
Options
*
options
,
char
*
argv0
)
{
...
...
@@ -477,4 +486,3 @@ int main(int argc, char * argv[]) {
return
EXIT_SUCCESS
;
}
/* vim:set shiftwidth=8 tabstop=8 expandtab: */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment