Converted these images to PNG, saving a handful of bytes per image
[adiumx.git] / Utilities / dep-build-scripts / meanwhile_ft_newservers_fix_1626349.diff
blob8300484d9495401fa0b574e2c8982db8dd042af8
1 # User Mikael Berthe <mikael.berthe@lilotux.net>
2 # Date 1194544713 -3600
3 Fix file transfers with recent Sametime servers
5 It seems that the last guint32_get() fails when Meanwhile receives
6 the FT offer.
7 I think we can skip it -- works for me but I can't check it with an
8 older server.
10 diff -r 4aabc56c0e5f src/srvc_ft.c
11 --- a/src/srvc_ft.c Tue Nov 06 11:46:26 2007 +0100
12 +++ b/src/srvc_ft.c Thu Nov 08 18:58:33 2007 +0100
13 @@ -142,7 +142,7 @@ static void recv_channelCreate(struct mw
14 mwString_get(b, &fnm); /* offered filename */
15 mwString_get(b, &txt); /* offering message */
16 guint32_get(b, &size); /* size of offered file */
17 - guint32_get(b, &junk); /* unknown */
18 + /* guint32_get(b, &junk); */ /* unknown */
19 /* and we just skip an unknown guint16 at the end */
21 b_err = mwGetBuffer_error(b);