aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_fax.c
diff options
context:
space:
mode:
authorseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-20 19:14:24 +0000
committerseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-20 19:14:24 +0000
commit6d9ad4b6ff02dad22f8325bdc38935822793dbe5 (patch)
tree01b53ac916f26cd8f39e9c65c43bf68b0e9d5ab5 /apps/app_fax.c
parentc29d7c899651d57c5f4278217da70c1ff9fcdd62 (diff)
Merged revisions 202183 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r202183 | seanbright | 2009-06-20 15:09:47 -0400 (Sat, 20 Jun 2009) | 5 lines Fix version detection for API changes in spandsp. (closes issue #15355) Reported by: deuffy ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@202186 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_fax.c')
-rw-r--r--apps/app_fax.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_fax.c b/apps/app_fax.c
index ed7fe16e6..e07e408ef 100644
--- a/apps/app_fax.c
+++ b/apps/app_fax.c
@@ -374,7 +374,7 @@ static int transmit_audio(fax_session *s)
struct timeval now, start, state_change;
enum ast_control_t38 t38control;
-#if SPANDSP_RELEASE_DATE >= 20081012
+#if SPANDSP_RELEASE_DATE >= 20080725
/* for spandsp shaphots 0.0.6 and higher */
t30state = &fax.t30;
#else
@@ -553,7 +553,7 @@ static int transmit_t38(fax_session *s)
t30_state_t *t30state;
t38_core_state_t *t38state;
-#if SPANDSP_RELEASE_DATE >= 20081012
+#if SPANDSP_RELEASE_DATE >= 20080725
/* for spandsp shaphots 0.0.6 and higher */
t30state = &t38.t30;
t38state = &t38.t38_fe.t38;