Mercurial > pidgin.yaz
diff src/dialogs.c @ 423:0d4e80bdb96b
[gaim-migrate @ 433]
No more --enable-oscar option. From now on, it's a toggle in the preferences.
PLEASE DO NOT USE OSCAR, even though it's very easy to.
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Wed, 21 Jun 2000 19:33:58 +0000 |
| parents | a330017b3aa4 |
| children | 9e5a6c35dd64 |
line wrap: on
line diff
--- a/src/dialogs.c Mon Jun 19 21:58:32 2000 +0000 +++ b/src/dialogs.c Wed Jun 21 19:33:58 2000 +0000 @@ -453,14 +453,10 @@ { int no = atoi(d); -#ifndef USE_OSCAR - char *w = strtok(NULL, ":"); -#else - char *w = d + 4; -#endif + char *w; char buf[256]; char buf2[32]; - + #ifdef GAIM_PLUGINS GList *c = callbacks; struct gaim_callback *g; @@ -475,6 +471,11 @@ } #endif + if (USE_OSCAR) + w = d + 4; + else + w = strtok(NULL, ":"); + switch(no) { case 69:
