Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
dcd692bc
Commit
dcd692bc
authored
17 years ago
by
rswindell
Browse files
Options
Downloads
Patches
Plain Diff
Added -u<mask> command-line option to set file creation permissions mask.
parent
73bbd8a3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/sbbs3/jsexec.c
+6
-1
6 additions, 1 deletion
src/sbbs3/jsexec.c
src/sbbs3/scfg/scfg.c
+7
-3
7 additions, 3 deletions
src/sbbs3/scfg/scfg.c
with
13 additions
and
4 deletions
src/sbbs3/jsexec.c
+
6
−
1
View file @
dcd692bc
...
...
@@ -8,7 +8,7 @@
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright 200
6
Rob Swindell - http://www.synchro.net/copyright.html *
* Copyright 200
7
Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
...
...
@@ -112,6 +112,7 @@ void usage(FILE* fp)
"
\t
-y<interval> set yield interval (default=%u, 0=never)
\n
"
"
\t
-g<interval> set garbage collection interval (default=%u, 0=never)
\n
"
"
\t
-h[hostname] use local or specified host name (instead of SCFG value)
\n
"
"
\t
-u<mask> set file creation permissions mask (in octal)
\n
"
"
\t
-L<level> set log level (default=%u)
\n
"
"
\t
-E<level> set error log level threshold (default=%d)
\n
"
"
\t
-f use non-buffered stream for console messages
\n
"
...
...
@@ -859,6 +860,10 @@ int main(int argc, char **argv, char** environ)
else
host_name
=
p
;
break
;
case
'u'
:
if
(
*
p
==
0
)
p
=
argv
[
++
argn
];
umask
(
strtol
(
p
,
NULL
,
8
));
break
;
case
'L'
:
if
(
*
p
==
0
)
p
=
argv
[
++
argn
];
log_level
=
strtol
(
p
,
NULL
,
0
);
...
...
This diff is collapsed.
Click to expand it.
src/sbbs3/scfg/scfg.c
+
7
−
3
View file @
dcd692bc
...
...
@@ -8,7 +8,7 @@
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright 200
6
Rob Swindell - http://www.synchro.net/copyright.html *
* Copyright 200
7
Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
...
...
@@ -126,13 +126,16 @@ int main(int argc, char **argv)
case
'B'
:
backup_level
=
atoi
(
argv
[
i
]
+
2
);
break
;
case
'U'
:
umask
(
strtoul
(
argv
[
i
]
+
2
,
NULL
,
8
));
break
;
case
'S'
:
no_dirchk
=!
no_dirchk
;
break
;
case
'H'
:
no_msghdr
=!
no_msghdr
;
break
;
case
'
U
'
:
case
'
A
'
:
all_msghdr
=!
all_msghdr
;
break
;
case
'F'
:
...
...
@@ -186,8 +189,9 @@ int main(int argc, char **argv)
"
\n\n
options:
\n\n
"
"-s = don't check directories
\r\n
"
"-f = force save of config files
\r\n
"
"-
u
= update all message base status headers
\r\n
"
"-
a
= update all message base status headers
\r\n
"
"-h = don't update message base status headers
\r\n
"
"-u# = set file creation permissions mask (in octal)
\n
"
"-c = force color mode
\r\n
"
"-m = force monochrome mode
\r\n
"
"-e# = set escape delay to #msec
\r\n
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment