Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
sbbs
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
Eric
sbbs
Commits
31ab2b03
Commit
31ab2b03
authored
4 years ago
by
Rob Swindell
Browse files
Options
Downloads
Patches
Plain Diff
Use current settings as defaults for US-timezone and DST prompts.
parent
80a84783
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/sbbs3/scfg/scfgsys.c
+4
-2
4 additions, 2 deletions
src/sbbs3/scfg/scfgsys.c
with
4 additions
and
2 deletions
src/sbbs3/scfg/scfgsys.c
+
4
−
2
View file @
31ab2b03
...
...
@@ -39,7 +39,9 @@ static void configure_dst(void)
strcpy
(
opt
[
1
],
"No"
);
strcpy
(
opt
[
2
],
"Automatic"
);
opt
[
3
][
0
]
=
0
;
int
i
=
1
;
int
i
=
2
;
if
(
!
(
cfg
.
sys_misc
&
SM_AUTO_DST
))
i
=
!
(
cfg
.
sys_timezone
&
DAYLIGHT
);
uifc
.
helpbuf
=
"`Daylight Saving Time (DST):`
\n
"
"
\n
"
...
...
@@ -172,7 +174,7 @@ void sys_cfg(void)
uifc
.
input
(
WIN_MID
,
0
,
0
,
"Location"
,
cfg
.
sys_location
,
sizeof
(
cfg
.
sys_location
)
-
1
,
K_EDIT
);
break
;
case
2
:
i
=
0
;
i
=
!
(
cfg
.
sys_timezone
&
US_ZONE
)
;
uifc
.
helpbuf
=
"`United States Time Zone:`
\n
"
"
\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