Changeset 60e8617
- Timestamp:
- Apr 5, 2013, 3:27:48 PM (12 years ago)
- Branches:
- master, release-1.10
- Children:
- 52bee9c, 24ece84, 109eb89
- Parents:
- 89f01bd
- git-author:
- David Benjamin <davidben@mit.edu> (04/05/13 15:24:24)
- git-committer:
- David Benjamin <davidben@mit.edu> (04/05/13 15:27:48)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
functions.c
r05adccf r60e8617 855 855 void owl_function_unsuball(void) 856 856 { 857 unsuball();858 owl_function_makemsg("Unsubscribed from all messages.");857 if (unsuball()) 858 owl_function_makemsg("Unsubscribed from all messages."); 859 859 } 860 860 -
zephyr.c
r89f01bd r60e8617 455 455 } 456 456 457 voidunsuball(void)457 bool unsuball(void) 458 458 { 459 459 #if HAVE_LIBZEPHYR … … 465 465 owl_function_error("Zephyr: Cancelling subscriptions: %s", 466 466 error_message(ret)); 467 #endif 467 return (ret == ZERR_NONE); 468 #endif 469 return true; 468 470 } 469 471
Note: See TracChangeset
for help on using the changeset viewer.