Changeset e7bcd1b
- Timestamp:
- Dec 12, 2003, 2:16:46 PM (19 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 2674412
- Parents:
- 8766d44
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r7e909ab re7bcd1b 1 1 $Id$ 2 2 3 2.1.1-pre-1 4 Only print forced AIM logout message once. 5 3 6 2.0.14 4 7 Fixed missing word in startup message -
aim.c
rcdf0ef1 re7bcd1b 225 225 logout(owl_global_get_aimsess(&g)); 226 226 227 owl_function_adminmsg("", "Logged out of AIM"); 228 227 if (owl_global_is_aimloggedin(&g)) owl_function_adminmsg("", "Logged out of AIM"); 229 228 owl_global_set_aimnologgedin(&g); 230 229 owl_global_set_no_doaimevents(&g); … … 233 232 void owl_aim_logged_out() 234 233 { 235 owl_function_adminmsg("", "You have been logged out of AIM");234 if (owl_global_is_aimloggedin(&g)) owl_function_adminmsg("", "Logged out of AIM"); 236 235 owl_aim_logout(); 237 236 } -
owl.h
r7e909ab re7bcd1b 20 20 static const char owl_h_fileIdent[] = "$Id$"; 21 21 22 #define OWL_VERSION 2. 0.1423 #define OWL_VERSION_STRING "2. 0.14"22 #define OWL_VERSION 2.1.1-pre-1 23 #define OWL_VERSION_STRING "2.1.1-pre-1" 24 24 25 25 /* Feature that is being tested to redirect stderr through a pipe.
Note: See TracChangeset
for help on using the changeset viewer.