Files
asterisk/main
Jeff Peeler e0bec5d67d (closes issue #13480)
Reported by: tzafrir

Replace a bunch of if defined checks for Zaptel/DAHDI through several new defines in dahdi_compat.h. This removes a lot of code duplication. Example from bug:

#ifdef HAVE_ZAPTEL
  fd = open("/dev/zap/pseudo", O_RDWR);
#else
  fd = open("/dev/dahdi/pseudo", O_RDWR);
#endif

is replaced with:
  fd = open(DAHDI_FILE_PSEUDO, O_RDRW);



git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@165991 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-12-19 19:48:00 +00:00
..
2008-08-06 00:25:10 +00:00
2008-12-19 19:48:00 +00:00
2008-09-27 15:13:30 +00:00
2008-11-25 22:41:10 +00:00
2008-12-19 19:48:00 +00:00
2007-12-27 20:09:06 +00:00
2008-07-18 19:06:10 +00:00
2007-11-06 18:53:37 +00:00