<html lang='en'>
<head>
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<title>
GitLab
</title>
</meta>
</head>
<style>
  img {
    max-width: 100%;
    height: auto;
  }
  p.details {
    font-style:italic;
    color:#777
  }
  .footer p {
    font-size:small;
    color:#777
  }
  pre.commit-message {
    white-space: pre-wrap;
  }
  .file-stats a {
    text-decoration: none;
  }
  .file-stats .new-file {
    color: #090;
  }
  .file-stats .deleted-file {
    color: #B00;
  }
</style>
<body>
<div class='content'>
<h3>
Hal Murray pushed to branch master
at <a href="https://gitlab.com/NTPsec/ntpsec">NTPsec / ntpsec</a>
</h3>
<h4>
Commits:
</h4>
<ul>
<li>
<strong><a href="https://gitlab.com/NTPsec/ntpsec/commit/14e0857fd90bbb5bb6abdbb72e2e0fecbffef0a4">14e0857f</a></strong>
<div>
<span>by Hal Murray</span>
<i>at 2016-01-10T03:08:03Z</i>
</div>
<pre class='commit-message'>cleanup/deglobalize config_priority</pre>
</li>
<li>
<strong><a href="https://gitlab.com/NTPsec/ntpsec/commit/72b2d7b9e6b6c64e95c03d1948e44d2c99d99cbd">72b2d7b9</a></strong>
<div>
<span>by Hal Murray</span>
<i>at 2016-01-10T04:34:18Z</i>
</div>
<pre class='commit-message'>Fix compiler warnings on 32 bit systems.</pre>
</li>
</ul>
<h4>4 changed files:</h4>
<ul>
<li class='file-stats'>
<a href='#diff-0'>
include/ntpd.h
</a>
</li>
<li class='file-stats'>
<a href='#diff-1'>
ntpd/ntp_config.c
</a>
</li>
<li class='file-stats'>
<a href='#diff-2'>
ntpd/ntp_intercept.c
</a>
</li>
<li class='file-stats'>
<a href='#diff-3'>
ntpd/ntpd.c
</a>
</li>
</ul>
<h4>Changes:</h4>
<li id='diff-0'>
<a href='https://gitlab.com/NTPsec/ntpsec/compare/7b0c834b1b800c49b45b0b7f11a5b85b5010dfe2...72b2d7b9e6b6c64e95c03d1948e44d2c99d99cbd#diff-0'>
<strong>
include/ntpd.h
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/include/ntpd.h
</span><span style="color: #000000;background-color: #ddffdd">+++ b/include/ntpd.h
</span><span style="color: #aaaaaa">@@ -320,7 +320,6 @@ extern    char *  fstostr(time_t);        /* NTP timescale seconds */
</span> /* ntp_config.c */
 extern char const *    progname;
 extern char    *sys_phone[];           /* ACTS phone numbers */
<span style="color: #000000;background-color: #ffdddd">-extern bool     config_priority_override;
</span> extern char *ntp_signd_socket;
 extern struct config_tree_tag *cfg_tree_history;
 
</code></pre>

<br>
</li>
<li id='diff-1'>
<a href='https://gitlab.com/NTPsec/ntpsec/compare/7b0c834b1b800c49b45b0b7f11a5b85b5010dfe2...72b2d7b9e6b6c64e95c03d1948e44d2c99d99cbd#diff-1'>
<strong>
ntpd/ntp_config.c
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/ntpd/ntp_config.c
</span><span style="color: #000000;background-color: #ddffdd">+++ b/ntpd/ntp_config.c
</span><span style="color: #aaaaaa">@@ -144,8 +144,6 @@ char      *sys_phone[MAXPHONE] = {NULL};  /* ACTS phone numbers */
</span> char      default_keysdir[] = NTP_KEYSDIR;
 char   *keysdir = default_keysdir;     /* crypto keys directory */
 char * saveconfigdir;
<span style="color: #000000;background-color: #ffdddd">-bool    config_priority_override = false;
-int    config_priority;
</span> 
 static char default_ntp_signd_socket[] =
 #ifdef MSSNTP_PATH
</code></pre>

<br>
</li>
<li id='diff-2'>
<a href='https://gitlab.com/NTPsec/ntpsec/compare/7b0c834b1b800c49b45b0b7f11a5b85b5010dfe2...72b2d7b9e6b6c64e95c03d1948e44d2c99d99cbd#diff-2'>
<strong>
ntpd/ntp_intercept.c
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/ntpd/ntp_intercept.c
</span><span style="color: #000000;background-color: #ddffdd">+++ b/ntpd/ntp_intercept.c
</span><span style="color: #aaaaaa">@@ -686,7 +686,11 @@ static char *lfpdump(l_fp *fp)
</span>     np <<= FRACTION_PREC;
     np |= fp->l_uf;
 
<span style="color: #000000;background-color: #ddffdd">+#if SIZEOF_LONG_LONG == SIZEOF_LONG
</span>     snprintf(buf, LIB_BUFLENGTH, "%lx", np);
<span style="color: #000000;background-color: #ddffdd">+#else
+    snprintf(buf, LIB_BUFLENGTH, "%llx", np);
+#endif
</span> 
     return buf;
 }
<span style="color: #aaaaaa">@@ -695,7 +699,11 @@ static void lfpload(char *str, l_fp *fp)
</span> {
     uint64_t   np;
 
<span style="color: #000000;background-color: #ddffdd">+#if SIZEOF_LONG_LONG == SIZEOF_LONG
</span>     sscanf(str, "%lx", &np);
<span style="color: #000000;background-color: #ddffdd">+#else
+    sscanf(str, "%llx", &np);
+#endif
</span>     
     (fp)->l_uf = (np) & 0xFFFFFFFF;                                     \
     (fp)->l_ui = (((np) >> FRACTION_PREC) & 0xFFFFFFFF);          \
</code></pre>

<br>
</li>
<li id='diff-3'>
<a href='https://gitlab.com/NTPsec/ntpsec/compare/7b0c834b1b800c49b45b0b7f11a5b85b5010dfe2...72b2d7b9e6b6c64e95c03d1948e44d2c99d99cbd#diff-3'>
<strong>
ntpd/ntpd.c
</strong>
</a>
<hr>
<pre class="highlight"><code><span style="color: #000000;background-color: #ffdddd">--- a/ntpd/ntpd.c
</span><span style="color: #000000;background-color: #ddffdd">+++ b/ntpd/ntpd.c
</span><span style="color: #aaaaaa">@@ -106,8 +106,8 @@ int       waitsync_fd_to_close = -1;      /* -w/--wait-sync */
</span>  */
 bool initializing;
 
<span style="color: #000000;background-color: #ffdddd">-extern bool config_priority_override;
-static int config_priority;
</span><span style="color: #000000;background-color: #ddffdd">+bool config_priority_override = false;
+int config_priority;
</span> 
 char const *progname;
 
</code></pre>

<br>
</li>

</div>
<div class='footer' style='margin-top: 10px;'>
<p>

<br>
<a href="https://gitlab.com/NTPsec/ntpsec/compare/7b0c834b1b800c49b45b0b7f11a5b85b5010dfe2...72b2d7b9e6b6c64e95c03d1948e44d2c99d99cbd">View it on GitLab</a>.
<br>
You're receiving this email because of your account on gitlab.com.
If you'd like to receive fewer emails, you can adjust your notification settings.

</p>
</div>
</body>
</html>