Changes in zephyr.c [ecffae6:c855755]
Legend:
- Unmodified
- Added
- Removed
-
zephyr.c
recffae6 rc855755 38 38 return g_strdup(input); 39 39 else 40 return g_ strdup_printf("%s/%s", owl_global_get_homedir(&g), name);40 return g_build_filename(owl_global_get_homedir(&g), name, NULL); 41 41 } 42 42 … … 1231 1231 return -1; 1232 1232 ret = ZSetLocation(zstr(exposure)); 1233 if (ret != ZERR_NONE) { 1233 if (ret != ZERR_NONE 1234 #ifdef ZCONST 1235 /* Before zephyr 3.0, ZSetLocation had a bug where, if you were subscribed 1236 * to your own logins, it could wait for the wrong notice and return 1237 * ZERR_INTERNAL when found neither SERVACK nor SERVNAK. Suppress it when 1238 * building against the old ABI. */ 1239 && ret != ZERR_INTERNAL 1240 #endif 1241 ) { 1234 1242 owl_function_error("Unable to set exposure level: %s.", error_message(ret)); 1235 1243 return -1;
Note: See TracChangeset
for help on using the changeset viewer.