forked from pool/chrony
Upgraded to version 3.0, along with clknetsim to match. OBS-URL: https://build.opensuse.org/request/show/450635 OBS-URL: https://build.opensuse.org/package/show/network:time/chrony?expand=0&rev=24
23 lines
766 B
Diff
23 lines
766 B
Diff
Index: chrony-3.0/clknetsim-6bb6519590ebf43a61f2c11442da525a1950b7df/client.c
|
|
===================================================================
|
|
--- chrony-3.0/clknetsim-6bb6519590ebf43a61f2c11442da525a1950b7df/client.c
|
|
+++ chrony-3.0/clknetsim-6bb6519590ebf43a61f2c11442da525a1950b7df/client.c
|
|
@@ -954,6 +954,8 @@ int open(const char *pathname, int flags
|
|
else if (!strcmp(pathname, "/dev/ptp1"))
|
|
return SYSCLK_FD;
|
|
|
|
+ if (!_open)
|
|
+ _open = (int (*)(const char *pathname, int flags))dlsym(RTLD_NEXT, "open");
|
|
r = _open(pathname, flags);
|
|
assert(r < 0 || (r < BASE_SOCKET_FD && r < BASE_TIMER_FD));
|
|
|
|
@@ -972,6 +974,8 @@ int close(int fd) {
|
|
return 0;
|
|
}
|
|
|
|
+ if (!_close)
|
|
+ _close = (int (*)(int fd))dlsym(RTLD_NEXT, "close");
|
|
return _close(fd);
|
|
}
|
|
|