From 0c9ed941515df31328b7d9068381ebed88142db4 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Sun, 30 Dec 2007 16:51:02 +0000 Subject: [PATCH] No need to replace __adjtimex with adjtimex now that is fixed in uClibc directly since [10057] SVN-Revision: 10058 --- net/ntpclient/patches/001-adjtimex_call.patch | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 net/ntpclient/patches/001-adjtimex_call.patch diff --git a/net/ntpclient/patches/001-adjtimex_call.patch b/net/ntpclient/patches/001-adjtimex_call.patch deleted file mode 100644 index 8c67a88da..000000000 --- a/net/ntpclient/patches/001-adjtimex_call.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -urN ntpclient/ntpclient.c ntpclient.new/ntpclient.c ---- ntpclient/ntpclient.c 2003-07-14 04:12:30.000000000 +0200 -+++ ntpclient.new/ntpclient.c 2007-12-29 22:48:01.000000000 +0100 -@@ -128,7 +128,7 @@ - #ifdef linux - struct timex txc; - txc.modes=0; -- if (__adjtimex(&txc) < 0) { -+ if (adjtimex(&txc) < 0) { - perror("adjtimex"); exit(1); - } - return txc.freq; -@@ -145,7 +145,7 @@ - struct timex txc; - txc.modes = ADJ_FREQUENCY; - txc.freq = new_freq; -- if (__adjtimex(&txc) < 0) { -+ if (adjtimex(&txc) < 0) { - perror("adjtimex"); exit(1); - } - return txc.freq; -- 2.30.2