Mercurial > pidgin
diff src/oscar.c @ 1710:f42ce672c560
[gaim-migrate @ 1720]
various fixes (for plugins especially), other updates. made WEBSITE macro so it's easy to change (not that i think it'll be changing again), updated some files to reflect that change.
committer: Tailor Script <tailor@pidgin.im>
| author | Eric Warmenhoven <eric@warmenhoven.org> |
|---|---|
| date | Fri, 13 Apr 2001 10:50:33 +0000 |
| parents | b5635d882116 |
| children | 00f74db70f2d |
line wrap: on
line diff
--- a/src/oscar.c Fri Apr 13 08:15:44 2001 +0000 +++ b/src/oscar.c Fri Apr 13 10:50:33 2001 +0000 @@ -526,7 +526,7 @@ break; case 0x1c: /* client too old */ - hide_login_progress(gc, _("The client version you are using is too old. Please upgrade at http://gaim.sourceforge.net/")); + hide_login_progress(gc, _("The client version you are using is too old. Please upgrade at " WEBSITE)); plugin_event(event_error, (void *)989, 0, 0, 0); break; default: @@ -602,6 +602,16 @@ return 1; } +void some_name(char *buf) +{ + int x[4]; + x[0] = htonl(0x45576172); + x[1] = htonl(0x6d656e68); + x[2] = htonl(0x6f76656e); + x[3] = 0; + g_snprintf(buf, 16, "%s", x); +} + int gaim_parse_login(struct aim_session_t *sess, struct command_rx_struct *command, ...) { #if 0
