[Git][NTPsec/ntpsec][master] ntp_control: fix overlong line.
Gary E. Miller
gitlab at mg.gitlab.com
Mon Oct 22 20:10:00 UTC 2018
Gary E. Miller pushed to branch master at NTPsec / ntpsec
Commits:
5367d30d by Gary E. Miller at 2018-10-22T20:09:34Z
ntp_control: fix overlong line.
- - - - -
1 changed file:
- ntpd/ntp_control.c
Changes:
=====================================
ntpd/ntp_control.c
=====================================
@@ -2938,8 +2938,9 @@ write_variables(
return;
}
errno = 0;
- if (!ext_var && (*valuep == '\0'
- || (val = strtol(valuep, NULL, 10), errno != 0))) {
+ if (!ext_var &&
+ (*valuep == '\0' ||
+ (val = strtol(valuep, NULL, 10), errno != 0))) {
ctl_error(CERR_BADFMT);
return;
}
View it on GitLab: https://gitlab.com/NTPsec/ntpsec/commit/5367d30df9dc92cae661550775e5e6c2c9a2c7b5
--
View it on GitLab: https://gitlab.com/NTPsec/ntpsec/commit/5367d30df9dc92cae661550775e5e6c2c9a2c7b5
You're receiving this email because of your account on gitlab.com.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.ntpsec.org/pipermail/vc/attachments/20181022/6256e595/attachment-0001.html>
More information about the vc
mailing list