Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • owl.c

    r5b37c063 r6eaf35b  
    2020#include <locale.h>
    2121#include "owl.h"
    22 
    2322
    2423#if OWL_STDERR_REDIR
     
    233232  owl_function_debugmsg("startup: processing config file");
    234233  owl_context_set_readconfig(owl_global_get_context(&g));
    235   perlerr=owl_perlconfig_initperl(configfile, &argc, &argv, &env);
     234  perlerr=owl_perlconfig_initperl(configfile);
    236235  if (perlerr) {
    237236    endwin();
     
    323322  sprintf(buff,      "Welcome to barnowl version %s.  Press 'h' for on-line help.            \n", OWL_VERSION_STRING);
    324323  strcat(startupmsg, buff);
     324  strcat(startupmsg, "To see a quick introduction, type ':show quickstart'.                  \n");
    325325  strcat(startupmsg, "                                                                       \n");
    326326  strcat(startupmsg, "BarnOwl is free software. Type ':show license' for more                \n");
    327   strcat(startupmsg, "information.                                                           \n");
    328   strcat(startupmsg, "                                                                 ^ ^   \n");
     327  strcat(startupmsg, "information.                                                     ^ ^   \n");
    329328  strcat(startupmsg, "                                                                 OvO   \n");
    330329  strcat(startupmsg, "Please report any bugs or suggestions to bug-barnowl@mit.edu    (   )  \n");
     
    511510      int signum;
    512511      if ((signum = owl_global_get_errsignal_and_clear(&g, &si)) > 0) {
    513         owl_function_error("Got unexpected signal: %d %s  (code: %d band: %d  errno: %d)",
     512        owl_function_error("Got unexpected signal: %d %s  (code: %d band: %ld  errno: %d)",
    514513                           signum, signum==SIGPIPE?"SIGPIPE":"SIG????",
    515514                           si.si_code, si.si_band, si.si_errno);
     
    612611
    613612  return 1;
    614 }
    615 
    616 void owl_process_aim()
    617 {
    618   if (owl_global_is_doaimevents(&g)) {
    619     owl_aim_process_events();
    620    
    621     if (owl_global_is_aimloggedin(&g)) {
    622       if (owl_timer_is_expired(owl_global_get_aim_buddyinfo_timer(&g))) {
    623         /* owl_buddylist_request_idletimes(owl_global_get_buddylist(&g)); */
    624         owl_timer_reset(owl_global_get_aim_buddyinfo_timer(&g));
    625       }
    626     }
    627   }
    628613}
    629614
Note: See TracChangeset for help on using the changeset viewer.