summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2007-10-10 16:01:31 +0000
committerRussell Bryant <russell@russellbryant.com>2007-10-10 16:01:31 +0000
commita6507769ca75f3e7ecec5948430b7f6bd7a0b06e (patch)
tree5fbe72dbc6cff9435e4762c5790615e4478f3859 /include
parent15f3f5408c6d43c232c2e6650f2ead3fef4d9022 (diff)
Merged revisions 85316 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r85316 | russell | 2007-10-10 10:56:23 -0500 (Wed, 10 Oct 2007) | 6 lines 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: https://origsvn.digium.com/svn/asterisk/trunk@85317 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include')
-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 24796076d..a93b58915 100644
--- a/include/asterisk/file.h
+++ b/include/asterisk/file.h
@@ -133,11 +133,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