Changeset 14640
- Timestamp:
- Dec 28, 2015, 11:53:55 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/daemon/daemon-posix.c
r14486 r14640 166 166 { 167 167 168 #if defined (HAVE_DAEMON) && !defined (__ UCLIBC__)168 #if defined (HAVE_DAEMON) && !defined (__APPLE__) && !defined (__UCLIBC__) 169 169 170 170 if (daemon (true, false) == -1) -
trunk/libtransmission/crypto-utils-openssl.c
r14576 r14640 8 8 */ 9 9 10 #ifdef __APPLE__ 11 /* OpenSSL "deprecated" as of OS X 10.7, but we still use it */ 12 #pragma GCC diagnostic ignored "-Wdeprecated-declarations" 13 #endif 14 10 15 #include <assert.h> 11 16 -
trunk/libtransmission/file-posix.c
r14614 r14640 873 873 } 874 874 875 #ifdef HAVE_FALLOCATE64 875 876 out: 877 #endif 876 878 if (!ret) 877 879 set_system_error (error, errno); -
trunk/libtransmission/json-test.c
r14522 r14640 18 18 #include "variant-common.h" 19 19 #include "libtransmission-test.h" 20 21 static inline tr_quark22 toQuark (const char * str)23 {24 return tr_quark_new (str, strlen(str));25 }26 20 27 21 static int -
trunk/libtransmission/peer-mgr.c
r14636 r14640 349 349 } 350 350 351 #ifndef NDEBUG 352 351 353 static inline int 352 354 swarmIsLocked (const tr_swarm * swarm) … … 354 356 return tr_sessionIsLocked (swarm->manager->session); 355 357 } 358 359 #endif /* NDEBUG */ 356 360 357 361 /** -
trunk/libtransmission/torrent.c
r14634 r14640 2179 2179 putenv (env[i]); 2180 2180 2181 chdir ("/");2181 (void) chdir ("/"); 2182 2182 2183 2183 if (execvp (script, cmd) == -1)
Note: See TracChangeset
for help on using the changeset viewer.