]> granicus.if.org Git - transmission/commitdiff
(trunk) prefer tr_remove() to unlink() or rmdir()
authorJordan Lee <jordan@transmissionbt.com>
Mon, 4 Feb 2013 21:53:19 +0000 (21:53 +0000)
committerJordan Lee <jordan@transmissionbt.com>
Mon, 4 Feb 2013 21:53:19 +0000 (21:53 +0000)
gtk/util.c
libtransmission/blocklist.c
libtransmission/metainfo.c
libtransmission/resume.c
libtransmission/rpcimpl.c
libtransmission/torrent.c
libtransmission/utils.c
libtransmission/variant.c

index fd431b913986828c13f0d76d11db91eff407c1f6..03424221b1eb58ebe6546d4d339ef4105c493306 100644 (file)
@@ -17,7 +17,6 @@
 
 #include <gtk/gtk.h>
 #include <glib/gi18n.h>
-#include <glib/gstdio.h> /* g_unlink () */
 #include <gio/gio.h> /* g_file_trash () */
 
 #include <libtransmission/transmission.h> /* TR_RATIO_NA, TR_RATIO_INF */
index b4d77f44886c43bcc157683f7756959c6ba03668..994070296501e1331bfae1ceb5f7dbeec95ec520 100644 (file)
@@ -16,7 +16,7 @@
 #include <stdlib.h> /* bsearch (), qsort () */
 #include <string.h>
 
-#include <unistd.h> /* unlink () */
+#include <unistd.h> /* close () */
 
 #ifdef WIN32
  #include <w32api.h>
@@ -139,7 +139,7 @@ static void
 blocklistDelete (tr_blocklistFile * b)
 {
   blocklistClose (b);
-  unlink (b->filename);
+  tr_remove (b->filename);
 }
 
 /***
index 4e3a7c35b9b0e2b8eae7e820f2b688f8c3976db4..c8bfbe15c7bc738c04d1402381fb18e024879029 100644 (file)
@@ -16,7 +16,7 @@
 #include <string.h> /* strlen () */
 
 #include <sys/types.h>
-#include <unistd.h> /* unlink, stat */
+#include <unistd.h> /* stat */
 
 #include <event2/buffer.h>
 
@@ -587,7 +587,7 @@ tr_metainfoRemoveSaved (const tr_session * session, const tr_info * inf)
   char * filename;
 
   filename = getTorrentFilename (session, inf);
-  unlink (filename);
+  tr_remove (filename);
   tr_free (filename);
 }
 
index 5767b64fd77d3a756c910aab0f769eb64d057cad..2d54e23cbc320b4fa245576d53335a32575df204 100644 (file)
@@ -10,8 +10,6 @@
  * $Id$
  */
 
-#include <unistd.h> /* unlink */
-
 #include <string.h>
 
 #include "transmission.h"
@@ -923,6 +921,6 @@ void
 tr_torrentRemoveResume (const tr_torrent * tor)
 {
     char * filename = getResumeFilename (tor);
-    unlink (filename);
+    tr_remove (filename);
     tr_free (filename);
 }
index 7b884fba80c53f97751b46152608ba85014ffd89..2572b53e697f90f4a5eb3f73e60a01345954d518 100644 (file)
@@ -15,7 +15,6 @@
 #include <errno.h>
 #include <stdlib.h> /* strtol */
 #include <string.h> /* strcmp */
-#include <unistd.h> /* unlink */
 
 #ifdef HAVE_ZLIB
  #include <zlib.h>
@@ -1490,7 +1489,7 @@ gotNewBlocklist (tr_session       * session,
             tr_snprintf (result, sizeof (result), "success");
         }
 
-        unlink (filename);
+        tr_remove (filename);
         tr_free (filename);
         tr_free (buf);
     }
index 31f10e0099d7bea7ba7059c060ac09a005e73891..215f01b3f9018badb05d412159a7e76a71fde243 100644 (file)
@@ -2921,7 +2921,7 @@ deleteLocalData (tr_torrent * tor, tr_fileFunc func)
         removeEmptyFoldersAndJunkFiles (tr_ptrArrayNth (&folders, i));
 
     /* cleanup */
-    rmdir (tmpdir);
+    tr_remove (tmpdir);
     tr_free (tmpdir);
     tr_ptrArrayDestruct (&folders, tr_free);
     tr_ptrArrayDestruct (&files, tr_free);
index e26832d3afbb070029fa710dbc2767507a4fd70a..fa9fd20880a1ca5a3fbc85a46d0cd40b8a2afd01 100644 (file)
@@ -40,7 +40,7 @@
 #include <sys/time.h>
 #include <sys/types.h>
 #include <sys/stat.h>
-#include <unistd.h> /* stat (), getcwd (), getpagesize (), unlink () */
+#include <unistd.h> /* stat (), getcwd (), getpagesize () */
 
 #include <event2/buffer.h>
 #include <event2/event.h>
@@ -1468,7 +1468,7 @@ tr_moveFile (const char * oldpath, const char * newpath, bool * renamed)
   if (bytesLeft != 0)
     return -1;
 
-  unlink (oldpath);
+  tr_remove (oldpath);
   return 0;
 }
 
index 965302c9be009a82f37dd99b5ee53e688ba6cb2d..ced8cc06232b2a05d6c1d4d2b31f1755129a2a3f 100644 (file)
@@ -23,7 +23,7 @@
 #endif
 
 #include <locale.h> /* setlocale() */
-#include <unistd.h> /* write(), unlink() */
+#include <unistd.h> /* write() */
 
 #include <event2/buffer.h>
 
@@ -1206,7 +1206,7 @@ tr_variantToFile (const tr_variant  * v,
         {
           tr_logAddError (_("Couldn't save temporary file \"%1$s\": %2$s"), tmp, tr_strerror (err));
           tr_close_file (fd);
-          unlink (tmp);
+          tr_remove (tmp);
         }
       else
         {
@@ -1220,7 +1220,7 @@ tr_variantToFile (const tr_variant  * v,
             {
               err = errno;
               tr_logAddError (_("Couldn't save file \"%1$s\": %2$s"), filename, tr_strerror (err));
-              unlink (tmp);
+              tr_remove (tmp);
             }
         }
     }