comparison src/dialogs.c @ 780:c714def9cebb

[gaim-migrate @ 790] You may be a geek if... You've ever used a computer on Friday, Saturday and Sunday of the same weekend. You find yourself interrupting computer store salesman to correct something he said. The first thing you notice when walking in a business is their computer system. ...and offer advice on how you would change it. You've ever mounted a magnetic tape reel. You own any shareware. You know more IP addresses than phone numbers. You've ever accidentally dialed an IP address. Your friends use you as tech support. You've ever named a computer. You have your local computer store on speed dial. You can't carry on a conversation without talking about computers. Co-workers have to E-mail you about the fire alarm to get you out of the building. You've ever found "stray" diskettes when doing laundry. Your computer has it's own phone line - but your teenager doesn't. You check the national weather service web page for current weather conditions (rather than look out the window). You know more URLs than street addresses. Your pet has a web page. You get really excited when Yahoo adds your link. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 29 Aug 2000 03:59:01 +0000
parents bddbc51abc43
children ffb824f6cd24
comparison
equal deleted inserted replaced
779:1823a4af82d3 780:c714def9cebb
510 int no = atoi(d); 510 int no = atoi(d);
511 char *w; 511 char *w;
512 char buf[256]; 512 char buf[256];
513 char buf2[32]; 513 char buf2[32];
514 514
515 #ifdef GAIM_PLUGINS 515 plugin_event(event_error, (void *)no, 0, 0);
516 GList *c = callbacks;
517 struct gaim_callback *g;
518 void (*function)(int, void *);
519 while (c) {
520 g = (struct gaim_callback *)c->data;
521 if (g->event == event_error && g->function != NULL) {
522 function = g->function;
523 (*function)(no, g->data);
524 }
525 c = c->next;
526 }
527 #endif
528 516
529 if (USE_OSCAR) 517 if (USE_OSCAR)
530 w = d + 4; 518 w = d + 4;
531 else 519 else
532 w = strtok(NULL, ":"); 520 w = strtok(NULL, ":");