Changeset 94af438
- Timestamp:
- Jun 23, 2009, 12:45:56 AM (16 years ago)
- Branches:
- master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 2c270e6
- Parents:
- 30e7ffd
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
functions.c
r8daf504 r94af438 3108 3108 ret=owl_zephyr_get_anyone_list(&anyone, filename); 3109 3109 if (ret) { 3110 owl_fmtext_append_normal(&fm, " Error opening file for zephyr buddies.\n"); 3110 if (errno == ENOENT) { 3111 owl_fmtext_append_normal(&fm, " You have not added any zephyr buddies. Use the\n"); 3112 owl_fmtext_append_normal(&fm, " command ':addbuddy zephyr "); 3113 owl_fmtext_append_bold( &fm, "<username>"); 3114 owl_fmtext_append_normal(&fm, "'.\n"); 3115 } else { 3116 owl_fmtext_append_normal(&fm, " Could not read zephyr buddies from the .anyone file.\n"); 3117 } 3111 3118 } else { 3112 3119 j=owl_list_get_size(&anyone);
Note: See TracChangeset
for help on using the changeset viewer.