From: Harlan Stenn Date: Sun, 4 Jan 2015 09:48:35 +0000 (-0500) Subject: Fix a regression introduced to timepps-Solaris.h X-Git-Tag: NTP_4_2_8P1_BETA4~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce626f574a0d8af7cb843d1a9c8ad75a1c0ae3f9;p=thirdparty%2Fntp.git Fix a regression introduced to timepps-Solaris.h bk: 54a90c73bm_cKpNbrWWrw0W4ha2wWQ --- diff --git a/ChangeLog b/ChangeLog index 49dd215f2..5624dd9ba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ --- +* Fix a regression introduced to timepps-Solaris.h as part of: + [Bug 1206] Required compiler changes for Windows + (4.2.5p181) 2009/06/06 +* [Bug 1084] PPSAPI for ntpd on Windows with DLL backends * [Bug 2695] Build problem on Windows (sys/socket.h). * [Bug 2715] mdnstries option for ntp.conf from NetBSD. --- diff --git a/include/timepps-Solaris.h b/include/timepps-Solaris.h index a2b1fbe3b..bcae382fe 100644 --- a/include/timepps-Solaris.h +++ b/include/timepps-Solaris.h @@ -413,7 +413,7 @@ time_pps_getparams( } punit = (pps_unit_t *)handle; - memcpy(params, &punit->params, sizeof(params)); + memcpy(params, &punit->params, sizeof(*params)); return (0); }