summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir.cohen@xorcom.com>2011-03-16 14:40:53 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2011-03-16 14:40:53 +0000
commit66e6a60f29f4ecb50731af97e00aeecf5770a431 (patch)
tree68671475c9fea94b7e435e0ae6b21d5c6de3e707
parent8d5ffe513a69d756c964c1a15e09d4513d8baa6b (diff)
astribank_is_starting.c: do have timeout (typo)
Due to a typo the option for not using a timeout was always used. Regression since r9426. git-svn-id: http://svn.asterisk.org/svn/dahdi/tools/branches/2.4@9833 a0bf4364-ded3-4de4-8d8a-66a801d63aff
-rw-r--r--xpp/astribank_is_starting.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xpp/astribank_is_starting.c b/xpp/astribank_is_starting.c
index d7661fe..072004f 100644
--- a/xpp/astribank_is_starting.c
+++ b/xpp/astribank_is_starting.c
@@ -16,7 +16,7 @@ static int verbose;
static int timeout_seconds = 60;
/* If libc provides no timeout variant: try to do without it: */
-#ifndef HAVE_SEMTIMEDEOP
+#ifndef HAVE_SEMTIMEDOP
#define semtimedop(sem, ops, n, timeout) semop(sem, ops, n)
#endif