- Timestamp:
- Oct 10, 2009, 9:24:41 PM (14 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:
- 68ab07c
- Parents:
- 69c3878 (diff), 32ad44d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zephyr.c
rdca3b27 rdcc3f80 82 82 void owl_zephyr_finish_initialization(owl_dispatch *d) { 83 83 Code_t code; 84 char *perl; 84 85 85 86 owl_select_remove_dispatch(d->fd); … … 125 126 owl_function_zephyr_buddy_check(0); 126 127 } 128 129 perl = owl_perlconfig_execute("BarnOwl::Zephyr::_zephyr_startup()"); 130 owl_free(perl); 127 131 } 128 132 … … 168 172 } 169 173 #endif 170 return (0);174 return 0; 171 175 } 172 176 … … 176 180 if(owl_global_is_havezephyr(&g)) 177 181 return(ZPending()); 178 else 179 return 0; 180 #else 181 return(0); 182 #endif 182 #endif 183 return 0; 183 184 } 184 185 … … 186 187 { 187 188 #ifdef HAVE_LIBZEPHYR 188 return(ZGetRealm());189 #else 190 return(""); 191 #endif 189 if (owl_global_is_havezephyr(&g)) 190 return(ZGetRealm()); 191 #endif 192 return ""; 192 193 } 193 194 … … 195 196 { 196 197 #ifdef HAVE_LIBZEPHYR 197 return(ZGetSender());198 #else 199 return(""); 200 #endif 198 if (owl_global_is_havezephyr(&g)) 199 return(ZGetSender()); 200 #endif 201 return ""; 201 202 } 202 203
Note: See TracChangeset
for help on using the changeset viewer.