htpdate: use adjtimex instead of the obsolete ntp_adjtime
authorFelix Fietkau <nbd@openwrt.org>
Fri, 29 May 2009 12:01:28 +0000 (12:01 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Fri, 29 May 2009 12:01:28 +0000 (12:01 +0000)
SVN-Revision: 16189

net/htpdate/patches/100-adjtimex.patch [new file with mode: 0644]

diff --git a/net/htpdate/patches/100-adjtimex.patch b/net/htpdate/patches/100-adjtimex.patch
new file mode 100644 (file)
index 0000000..7551885
--- /dev/null
@@ -0,0 +1,20 @@
+--- a/htpdate.c
++++ b/htpdate.c
+@@ -349,7 +349,7 @@
+       /* Read current kernel frequency */
+       tmx.modes = 0;
+-      ntp_adjtime(&tmx);
++      adjtimex(&tmx);
+       /* Calculate new frequency */
+       freq = (long)(65536e6 * drift);
+@@ -364,7 +364,7 @@
+       /* Become root */
+       seteuid(0);
+-      return( ntp_adjtime(&tmx) );
++      return( adjtimex(&tmx) );
+ }