Changeset 4784
- Timestamp:
- 05/20/07 15:38:34 (2 years ago)
- Files:
-
- wire/trunk/wire/client.c (modified) (2 diffs)
- wire/trunk/wire/files.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wire/trunk/wire/client.c
r4423 r4784 164 164 wi_log_err(WI_STR("Could not set SSL context: %m")); 165 165 166 if(!wi_socket_context_set_ssl_ciphers(wr_socket_context, WI_STR("ALL:NULL:!MD5:@STRENGTH"))) 167 wi_log_err(WI_STR("Could not set SSL ciphers: %m")); 168 166 169 options = WI_STRING_ENCODING_IGNORE | WI_STRING_ENCODING_TRANSLITERATE; 167 170 … … 216 219 socket = wi_socket_init_with_address(wi_socket_alloc(), address, WI_SOCKET_TCP); 217 220 wi_socket_set_interactive(socket, true); 218 221 219 222 if(!wi_socket_connect(socket, wr_socket_context, 10.0)) { 220 223 wr_printf_prefix(WI_STR("Could not connect to %@: %m"), ip); wire/trunk/wire/files.c
r4758 r4784 275 275 gl.gl_stat = wr_files_glob_stat; 276 276 277 status = glob(wi_string_cstring(pattern), GLOB_NOCHECK | GLOB_ALTDIRFUNC , NULL, &gl);277 status = glob(wi_string_cstring(pattern), GLOB_NOCHECK | GLOB_ALTDIRFUNC, NULL, &gl); 278 278 279 279 if(status != 0) { … … 297 297 298 298 #ifndef __GLIBC__ 299 299 300 static void * wr_files_glob_opendir(const char *path) { 300 301 wr_files_glob_dir_t *dir; … … 358 359 return 0; 359 360 } 361 360 362 #endif 361 363
