comparison plugins/irc.c @ 1134:f6e8953a9c5e

[gaim-migrate @ 1144] Just removing a useless comment. committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Sat, 25 Nov 2000 10:43:27 +0000
parents 114cd406b022
children 4291c96c5096
comparison
equal deleted inserted replaced
1133:0dc7c7b4f8ca 1134:f6e8953a9c5e
887 g_snprintf(buf, sizeof(buf), "Signon: %s", gc->username); 887 g_snprintf(buf, sizeof(buf), "Signon: %s", gc->username);
888 set_login_progress(gc, 2, buf); 888 set_login_progress(gc, 2, buf);
889 889
890 /* This is where we will attempt to sign on */ 890 /* This is where we will attempt to sign on */
891 891
892 /* FIXME: This should be their servername, not their username. im just lazy right now */
893
894 g_snprintf(buf, 4096, "NICK %s\n USER %s localhost %s :GAIM (www.marko.net/gaim)\n", gc->username, getenv("USER"), user->proto_opt[0]); 892 g_snprintf(buf, 4096, "NICK %s\n USER %s localhost %s :GAIM (www.marko.net/gaim)\n", gc->username, getenv("USER"), user->proto_opt[0]);
895 893
896 printf("Sending: %s\n", buf); 894 printf("Sending: %s\n", buf);
897 write(idata->fd, buf, strlen(buf)); 895 write(idata->fd, buf, strlen(buf));
898 896