aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main/asterisk.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/main/asterisk.c b/main/asterisk.c
index c3191711d..cee50d677 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -76,16 +76,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#if defined(HAVE_ZAPTEL) || defined (HAVE_DAHDI)
#include <sys/ioctl.h>
-#endif
-
-#if defined(HAVE_DAHDI)
#include "asterisk/dahdi_compat.h"
#endif
-#if defined(HAVE_ZAPTEL)
-#include <zaptel/zaptel.h>
-#endif
-
#ifdef linux
#include <sys/prctl.h>
#ifdef HAVE_CAP
@@ -2998,7 +2991,7 @@ int main(int argc, char *argv[])
int x = 160;
fd = open("/dev/zap/timer", O_RDWR);
if (fd >= 0) {
- if (ioctl(fd, ZT_TIMERCONFIG, &x)) {
+ if (ioctl(fd, DAHDI_TIMERCONFIG, &x)) {
ast_log(LOG_ERROR, "You have Zaptel built and drivers loaded, but the Zaptel timer test failed to set ZT_TIMERCONFIG to %d.\n", x);
exit(1);
}