# HG changeset patch # User Christian Hammond # Date 1055589266 0 # Node ID 98ec3e394f5982bc495fec324827fdb9f2ef3ee1 # Parent d0a311def86047c8ecb9c84a702620077a28cbb6 [gaim-migrate @ 6294] This is in my way... just committing the Trepia code I was working on that currently does nothing. committer: Tailor Script diff -r d0a311def860 -r 98ec3e394f59 src/protocols/trepia/trepia.c --- a/src/protocols/trepia/trepia.c Sat Jun 14 07:48:44 2003 +0000 +++ b/src/protocols/trepia/trepia.c Sat Jun 14 11:14:26 2003 +0000 @@ -40,6 +40,8 @@ # include #endif +#define TREPIA_VERSION "2.50" + static GaimPlugin *my_protocol = NULL; typedef enum @@ -1027,7 +1029,9 @@ mac, gaim_account_get_username(account), md5_password); +#if 0 g_free(mac); +#endif if (trepia_write(session->fd, buffer, strlen(buffer)) < 0) { gaim_connection_error(session->gc, _("Write error")); @@ -1192,15 +1196,15 @@ static void trepia_register_user(GaimAccount *account) { -#if 0 char *buffer; + char *mac = "00:01:02:03:04:05"; buffer = g_strdup_printf( - "%s%s2.0%s%s" - "%s" - ""); - -#endif + "%s%s%s%s%s" + "" + "", + mac, "", TREPIA_VERSION, gaim_account_get_username(account), + gaim_account_get_password(account)); } static GaimPluginProtocolInfo prpl_info =