Re: another changed behaviour

2019-02-04 Thread Udo van den Heuvel via devel
On 04-02-19 22:14, Gary E. Miller via devel wrote: > Stupid typo. My fault. Thanks to Achimm for bisecting it. Fix pushed. > > Thank you for your report. Sorry for the trouble. Thank you for the -quick- fix! Kind regards, Udo ___ devel mailing list

Re: another changed behaviour

2019-02-04 Thread Achim Gratz via devel
Gary E. Miller via devel writes: > I found it. Stupid typo. Fix coming. Fix confirmed. > Once again: thanks for the bisect. My pleasure. Regards, Achim. -- +<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+ SD adaptations for KORG EX-800 and Poly-800MkII V0.9: http://Synt

Re: another changed behaviour

2019-02-04 Thread Gary E. Miller via devel
Yo Udo! On Mon, 4 Feb 2019 16:51:43 +0100 Udo van den Heuvel via devel wrote: > I noticed that using latest git for ntpsec `/bin/ntpq -c > kerninfo|/bin/awk -e '/pll offset:/ {o=$3; if (o < 0) o = -o; print > o*100;}' -e '/estimated error/ {print $3*100;print 1;print > "ntpstat"}'` does

Re: another changed behaviour

2019-02-04 Thread Gary E. Miller via devel
Yo Achim! On Mon, 04 Feb 2019 22:06:27 +0100 Achim Gratz via devel wrote: > Gary E. Miller via devel writes: > > The end result is: > > > > char buffer[200]; > > char buf[50]; > > > > strlcpy(buffer, tag, sizeof(buffer)); > > snprintf(buf, sizeof(buf), use_f ? "=%

Re: another changed behaviour

2019-02-04 Thread Achim Gratz via devel
Gary E. Miller via devel writes: > The end result is: > > char buffer[200]; > char buf[50]; > > strlcpy(buffer, tag, sizeof(buffer)); > snprintf(buf, sizeof(buf), use_f ? "=%.*f" : "%.*g", precision, d); > strlcat(buffer, buf, sizeof(buffer)); > > ctl

Re: another changed behaviour

2019-02-04 Thread Gary E. Miller via devel
Yo Achim! On Mon, 04 Feb 2019 21:37:35 +0100 Achim Gratz via devel wrote: > This defect bisects to the unlikely commit: here is the entire change: @@ -1198,21 +1198,14 @@ ctl_putdblf( double d ) { - char *cp; - const char *cq; - char buffer[200]; +

Re: another changed behaviour

2019-02-04 Thread Gary E. Miller via devel
Yo Achim! On Mon, 04 Feb 2019 21:37:35 +0100 Achim Gratz via devel wrote: > Udo van den Heuvel via devel writes: > > I noticed that using latest git for ntpsec `/bin/ntpq -c > > kerninfo|/bin/awk -e '/pll offset:/ {o=$3; if (o < 0) o = -o; print > > o*100;}' -e '/estimated error/ {print $3*1

Re: another changed behaviour

2019-02-04 Thread Achim Gratz via devel
Udo van den Heuvel via devel writes: > I noticed that using latest git for ntpsec `/bin/ntpq -c > kerninfo|/bin/awk -e '/pll offset:/ {o=$3; if (o < 0) o = -o; print > o*100;}' -e '/estimated error/ {print $3*100;print 1;print > "ntpstat"}'` does no longer provide me with a pll offset nor a

another changed behaviour

2019-02-04 Thread Udo van den Heuvel via devel
Hello, I noticed that using latest git for ntpsec `/bin/ntpq -c kerninfo|/bin/awk -e '/pll offset:/ {o=$3; if (o < 0) o = -o; print o*100;}' -e '/estimated error/ {print $3*100;print 1;print "ntpstat"}'` does no longer provide me with a pll offset nor an estimated error. What are the alter