Mercurial > pidgin
diff src/protocols/sametime/meanwhile/common.c @ 11943:0110fc7c6a8a
[gaim-migrate @ 14234]
Bringing things up to date with the last Meanwhile release, 0.5.0 and the last
gaim-meanwhile plugin release, 1.2.5 (which should be the last plugin release
against oldstatus, if all goes well with HEAD and no major bugs crop up)
It builds, so that's a start. The status bits that have been empty since the
first import of the sametime stuff are still empty, but I'm going to try and
fill those in tomorrow. I've decided to try and start using HEAD actively, to
encourage me to get this freaking prpl fully functional.
committer: Tailor Script <tailor@pidgin.im>
| author | Christopher O'Brien <siege@pidgin.im> |
|---|---|
| date | Wed, 02 Nov 2005 03:39:03 +0000 |
| parents | 3ef77720e577 |
| children | 5b3368008513 |
line wrap: on
line diff
--- a/src/protocols/sametime/meanwhile/common.c Wed Nov 02 03:31:38 2005 +0000 +++ b/src/protocols/sametime/meanwhile/common.c Wed Nov 02 03:39:03 2005 +0000 @@ -803,6 +803,12 @@ } +void mwEncryptItem_free(struct mwEncryptItem *ei) { + mwEncryptItem_clear(ei); + g_free(ei); +} + + /* 8.4.2.1 Awareness ID Block */ @@ -929,19 +935,21 @@ return "Lotus Java Client Applet"; case mwLogin_BINARY: - return "Lotus Sametime"; + return "Lotus Sametime Connect"; case mwLogin_JAVA_APP: return "Lotus Java Client Application"; - case mwLogin_NOTES_6_5: - return "Lotus Notes Client 6.5.2+"; + case mwLogin_LINKS: + return "Lotus Sametime Links"; + case mwLogin_NOTES_6_5: case mwLogin_NOTES_7_0: - return "Lotus Notes Client 7"; + return "Lotus Notes Client"; case mwLogin_ICT: - return "IBM Community Tools (ICT)"; + case mwLogin_ICT_1_7_8_2: + return "IBM Community Tools"; case mwLogin_NOTESBUDDY: case mwLogin_NOTESBUDDY_4_15: @@ -963,18 +971,6 @@ case mwLogin_MEANWHILE: return "Meanwhile"; - case mwLogin_MW_PYTHON: - return "Meanwhile Python"; - - case mwLogin_MW_GAIM: - return "Meanwhile Gaim"; - - case mwLogin_MW_ADIUM: - return "Meanwhile Adium"; - - case mwLogin_MW_KOPETE: - return "Meanwhile Kopete"; - default: return NULL; }
