diff options
author | Danomi Manchego <danomimanchego123@gmail.com> | 2014-07-17 23:56:53 -0400 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-07-18 21:24:30 +0200 |
commit | ca4e58ffbf21c61794502d81bc002b2b97bbfebe (patch) | |
tree | ea44128f0f43087dd8a57a7d9f9a5beec21b7d1e /package/ntp/ntp-adjtimex.patch | |
parent | 7c79190bd1753e13dc66e59938e21fe660285ca6 (diff) | |
download | buildroot-ca4e58ffbf21c61794502d81bc002b2b97bbfebe.tar.gz buildroot-ca4e58ffbf21c61794502d81bc002b2b97bbfebe.zip |
ntp: rename patches to follow BR guidelines
Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/ntp/ntp-adjtimex.patch')
-rw-r--r-- | package/ntp/ntp-adjtimex.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/package/ntp/ntp-adjtimex.patch b/package/ntp/ntp-adjtimex.patch deleted file mode 100644 index 40625fa18f..0000000000 --- a/package/ntp/ntp-adjtimex.patch +++ /dev/null @@ -1,33 +0,0 @@ -https://support.ntp.org/bugs/show_bug.cgi?id=769 -http://bugs.gentoo.org/254030 - ---- ntp/util/tickadj.c -+++ ntp/util/tickadj.c -@@ -21,7 +21,8 @@ - # include <unistd.h> - #endif /* HAVE_UNISTD_H */ - --#ifdef HAVE___ADJTIMEX /* Linux */ -+/* proper handling here has been moved to upstream ntp bugzilla */ -+#ifdef linux - - #include <sys/timex.h> - struct timex txc; -@@ -91,7 +92,7 @@ - } - - if (!errflg) { -- if (__adjtimex(&txc) < 0) -+ if (adjtimex(&txc) < 0) - perror("adjtimex"); - else if (!quiet) - printf("tick = %ld\ntick_adj = %d\n", -@@ -146,7 +147,7 @@ - #endif - } - -- if (__adjtimex(&txc) < 0) -+ if (adjtimex(&txc) < 0) - { - perror("adjtimex"); - } |