Blame view

recipes-support/ntp/files/tickadj.c.patch 795 Bytes
f10cf0715   Eric Lee   First Commit, SMA...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  Index: ntp-4.2.2p3-r0/ntp-4.2.2p3/util/tickadj.c
  ===================================================================
  --- ntp-4.2.2p3/util/tickadj.c	2004-02-25 06:58:33.000000000 +0100
  +++ ntp-4.2.2p3/util/tickadj.c	2007-07-07 01:00:54.000000000 +0200
  @@ -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
  tick_adj = %d
  ",
  @@ -146,7 +147,7 @@
   #endif
   	}
       
  -	if (__adjtimex(&txc) < 0)
  +	if (adjtimex(&txc) < 0)
   	{
   		perror("adjtimex");
   	}