Changeset 836ea3a3 for logging.c


Ignore:
Timestamp:
Oct 17, 2003, 5:20:48 PM (21 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
6a50af2
Parents:
ec6ff52
Message:
Converted more error messages to use the error queue
File:
1 edited

Legend:

Unmodified
Added
Removed
  • logging.c

    re6449bc r836ea3a3  
    2828  file=fopen(filename, "a");
    2929  if (!file) {
    30     owl_function_makemsg("Unable to open file for outgoing logging");
     30    owl_function_error("Unable to open file for outgoing logging");
    3131    owl_free(logpath);
    3232    return;
     
    4242  file=fopen(filename, "a");
    4343  if (!file) {
    44     owl_function_makemsg("Unable to open file for outgoing logging");
     44    owl_function_error("Unable to open file for outgoing logging");
    4545    return;
    4646  }
     
    6868  file=fopen(filename, "a");
    6969  if (!file) {
    70     owl_function_makemsg("Unable to open file for outgoing logging");
     70    owl_function_error("Unable to open file for outgoing logging");
    7171    owl_free(logpath);
    7272    return;
     
    8282  file=fopen(filename, "a");
    8383  if (!file) {
    84     owl_function_makemsg("Unable to open file for outgoing logging");
     84    owl_function_error("Unable to open file for outgoing logging");
    8585    return;
    8686  }
     
    179179  file=fopen(filename, "a");
    180180  if (!file) {
    181     owl_function_makemsg("Unable to open file for incoming logging");
     181    owl_function_error("Unable to open file for incoming logging");
    182182    return;
    183183  }
     
    187187    allfile=fopen(allfilename, "a");
    188188    if (!allfile) {
    189       owl_function_makemsg("Unable to open file for incoming logging");
     189      owl_function_error("Unable to open file for incoming logging");
    190190      fclose(file);
    191191      return;
Note: See TracChangeset for help on using the changeset viewer.