Portable build framework for OpenNTPD
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
834 B

  1. --- ntpd.orig 2014-12-28 11:51:56.363211155 -0600
  2. +++ ntpd.c 2014-12-28 11:52:00.971211255 -0600
  3. @@ -30,6 +30,7 @@
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <string.h>
  7. +#include <time.h>
  8. #include <unistd.h>
  9. #include <err.h>
  10. --- ntpd.orig Sun Dec 28 16:11:35 2014
  11. +++ ntpd.h Sun Dec 28 16:12:14 2014
  12. @@ -28,7 +28,6 @@
  13. #include <netdb.h>
  14. #include <pwd.h>
  15. #include <stdarg.h>
  16. -#include <event.h>
  17. #include <poll.h>
  18. #include "ntp.h"
  19. @@ -190,14 +189,6 @@
  20. u_int8_t filters;
  21. };
  22. -struct imsgev {
  23. - struct imsgbuf ibuf;
  24. - void (*handler)(int, short, void *);
  25. - struct event ev;
  26. - void *data;
  27. - short events;
  28. -};
  29. -
  30. struct ctl_show_status {
  31. u_int peercnt;
  32. u_int sensorcnt;
  33. @@ -240,7 +231,6 @@
  34. struct ctl_conn {
  35. TAILQ_ENTRY(ctl_conn) entry;
  36. - struct imsgev iev;
  37. struct imsgbuf ibuf;
  38. };