summaryrefslogtreecommitdiff
path: root/dahdi_tool.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2008-05-23 15:19:32 +0000
committerKevin P. Fleming <kpfleming@digium.com>2008-05-23 15:19:32 +0000
commitf93386feb19cc26c0e10ba9208afaba7a790ee5c (patch)
tree2b798a77280c8c524dc990f0d84f758884c374a9 /dahdi_tool.c
parent04128951db339ddfd7905adf92990f00a3a01447 (diff)
various minor fixes and get dahdi_tool to actually be built
git-svn-id: http://svn.asterisk.org/svn/dahdi/tools/trunk@4340 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'dahdi_tool.c')
-rw-r--r--dahdi_tool.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dahdi_tool.c b/dahdi_tool.c
index de7067b..fe49a54 100644
--- a/dahdi_tool.c
+++ b/dahdi_tool.c
@@ -568,9 +568,9 @@ static void cleanup(void)
int main(int argc, char *argv[])
{
- ctl = open("/dev/zap/ctl", O_RDWR);
+ ctl = open("/dev/dahdi/ctl", O_RDWR);
if (ctl < 0) {
- fprintf(stderr, "Unable to open /dev/zap/ctl: %s\n", strerror(errno));
+ fprintf(stderr, "Unable to open /dev/dahdi/ctl: %s\n", strerror(errno));
exit(1);
}
newtInit();