aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-10 15:56:23 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-10 15:56:23 +0000
commit3fd19006f89cec2f9fe41d73946d48116cc44582 (patch)
treee0e13ea542aba17633369f0df9ed847daf647553
parentf79ccd8c30c69076f34cf189b21062301578686b (diff)
I introduced a new member to the ast_filestream struct in 1.4.12, but put it
in the middle of the struct, instead of at the end. One of the Debian folks, paravoid, pointed out that this breaks binary compatability with modules compiled against older headers. So, I'm moving the new member to the end of the struct to resolve the situation. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@85316 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--include/asterisk/file.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/file.h b/include/asterisk/file.h
index 936735c4a..69229d406 100644
--- a/include/asterisk/file.h
+++ b/include/asterisk/file.h
@@ -129,11 +129,11 @@ struct ast_filestream {
int lastwriteformat;
int lasttimeout;
struct ast_channel *owner;
- const char *orig_chan_name;
FILE *f;
struct ast_frame fr; /* frame produced by read, typically */
char *buf; /* buffer pointed to by ast_frame; */
void *private; /* pointer to private buffer */
+ const char *orig_chan_name;
};
#define SEEK_FORCECUR 10