Changeset 836ea3a3
- Timestamp:
- Oct 17, 2003, 5:20:48 PM (21 years ago)
- 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
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
rc5f3b46 r836ea3a3 1 1 $Id$ 2 2 3 2.0.9-pre-1 4 Added errqueue. 5 Added command "show errors". 6 3 7 2.0.8 4 8 Increased size of screen name field in buddy listing -
aim.c
rec6ff52 r836ea3a3 225 225 { 226 226 if (message) { 227 owl_function_ makemsg(message);227 owl_function_error(message); 228 228 } else { 229 owl_function_ makemsg("Authentication error on login");229 owl_function_error("Authentication error on login"); 230 230 } 231 231 owl_function_beep(); … … 1596 1596 1597 1597 /* printf("snac threw error (reason 0x%04x: %s)\n", reason, (reason<msgerrreasonslen)?msgerrreasons[reason]:"unknown"); */ 1598 owl_function_makemsg(msgerrreasons[reason]);1599 1598 1600 1599 return 1; -
logging.c
re6449bc r836ea3a3 28 28 file=fopen(filename, "a"); 29 29 if (!file) { 30 owl_function_ makemsg("Unable to open file for outgoing logging");30 owl_function_error("Unable to open file for outgoing logging"); 31 31 owl_free(logpath); 32 32 return; … … 42 42 file=fopen(filename, "a"); 43 43 if (!file) { 44 owl_function_ makemsg("Unable to open file for outgoing logging");44 owl_function_error("Unable to open file for outgoing logging"); 45 45 return; 46 46 } … … 68 68 file=fopen(filename, "a"); 69 69 if (!file) { 70 owl_function_ makemsg("Unable to open file for outgoing logging");70 owl_function_error("Unable to open file for outgoing logging"); 71 71 owl_free(logpath); 72 72 return; … … 82 82 file=fopen(filename, "a"); 83 83 if (!file) { 84 owl_function_ makemsg("Unable to open file for outgoing logging");84 owl_function_error("Unable to open file for outgoing logging"); 85 85 return; 86 86 } … … 179 179 file=fopen(filename, "a"); 180 180 if (!file) { 181 owl_function_ makemsg("Unable to open file for incoming logging");181 owl_function_error("Unable to open file for incoming logging"); 182 182 return; 183 183 } … … 187 187 allfile=fopen(allfilename, "a"); 188 188 if (!allfile) { 189 owl_function_ makemsg("Unable to open file for incoming logging");189 owl_function_error("Unable to open file for incoming logging"); 190 190 fclose(file); 191 191 return; -
util.c
rf1e629d r836ea3a3 726 726 file=fopen(filename, "r"); 727 727 if (!file) { 728 owl_function_ makemsg("Error opening file %s", filename);728 owl_function_error("Error opening file %s", filename); 729 729 return; 730 730 } … … 735 735 backupfile=fopen(backupfilename, "w"); 736 736 if (!backupfile) { 737 owl_function_ makemsg("Error opening file %s for writing", backupfilename);737 owl_function_error("Error opening file %s for writing", backupfilename); 738 738 owl_free(backupfilename); 739 739 return; … … 773 773 file=fopen(filename, "w"); 774 774 if (!file) { 775 owl_function_ makemsg("WARNING: Error opening %s for writing. Use %s to restore.", filename, backupfilename);775 owl_function_error("WARNING: Error opening %s for writing. Use %s to restore.", filename, backupfilename); 776 776 owl_function_beep(); 777 777 owl_free(line); -
variable.c
rf1e629d r836ea3a3 477 477 v = owl_dict_find_element(d, name); 478 478 if (v == NULL) { 479 if (msg) owl_function_ makemsg("Unknown variable %s", name);479 if (msg) owl_function_error("Unknown variable %s", name); 480 480 return -1; 481 481 } 482 482 if (!v->set_fromstring_fn) { 483 if (msg) owl_function_ makemsg("Variable %s is read-only", name);483 if (msg) owl_function_error("Variable %s is read-only", name); 484 484 return -1; 485 485 } 486 486 if (requirebool && v->type!=OWL_VARIABLE_BOOL) { 487 if (msg) owl_function_ makemsg("Variable %s is not a boolean", name);487 if (msg) owl_function_error("Variable %s is not a boolean", name); 488 488 return -1; 489 489 } 490 490 if (0 != v->set_fromstring_fn(v, value)) { 491 if (msg) owl_function_ makemsg("Unable to set %s (must be %s)", name,491 if (msg) owl_function_error("Unable to set %s (must be %s)", name, 492 492 owl_variable_get_validsettings(v)); 493 493 return -1; -
zwrite.c
r9ceee9d r836ea3a3 30 30 argv=myargv=owl_parseline(line, &argc); 31 31 if (argc<0) { 32 owl_function_ makemsg("Unbalanced quotes");32 owl_function_error("Unbalanced quotes in zwrite"); 33 33 return(-1); 34 34 } … … 135 135 !strcasecmp(z->inst, "personal") && 136 136 owl_list_get_size(&(z->recips))==0) { 137 owl_function_ makemsg("You must specify a recipient");137 owl_function_error("You must specify a recipient for zwrite"); 138 138 return(-1); 139 139 }
Note: See TracChangeset
for help on using the changeset viewer.