]> granicus.if.org Git - transmission/commitdiff
make tr_mkdir() private.
authorJordan Lee <jordan@transmissionbt.com>
Tue, 16 Oct 2012 03:13:05 +0000 (03:13 +0000)
committerJordan Lee <jordan@transmissionbt.com>
Tue, 16 Oct 2012 03:13:05 +0000 (03:13 +0000)
libtransmission/utils.c
libtransmission/utils.h

index c09295791151c1bde34b686ac8fbcdb4acc26d95..4a37b6ef13b46fdfc245b799fbcde180cbcb0799 100644 (file)
@@ -519,13 +519,17 @@ tr_mkdtemp( char * template )
 #endif
 }
 
-int
-tr_mkdir( const char * path,
-          int permissions
-#ifdef WIN32
-                       UNUSED
-#endif
-        )
+/**
+ * @brief Portability wrapper for mkdir()
+ *
+ * A portability wrapper around mkdir().
+ * On WIN32, the `permissions' argument is unused.
+ *
+ * @return zero on success, or -1 if an error occurred
+ * (in which case errno is set appropriately).
+ */
+static int
+tr_mkdir( const char * path, int permissions UNUSED)
 {
 #ifdef WIN32
     if( path && isalpha( path[0] ) && path[1] == ':' && !path[2] )
index 8d8df7618ca87ec85f168bddf3638dcaf0731b53..c5a2437f285aa2512ed2d91c52e7d6fb4c83285e 100644 (file)
@@ -203,17 +203,6 @@ char* tr_basename( const char * path ) TR_GNUC_MALLOC;
 /** @brief Portability wrapper for dirname() that uses the system implementation if available */
 char* tr_dirname( const char * path ) TR_GNUC_MALLOC;
 
-/**
- * @brief Portability wrapper for mkdir()
- *
- * A portability wrapper around mkdir().
- * On WIN32, the `permissions' argument is unused.
- *
- * @return zero on success, or -1 if an error occurred
- * (in which case errno is set appropriately).
- */
-int tr_mkdir( const char * path, int permissions ) TR_GNUC_NONNULL(1);
-
 /**
  * Like mkdir, but makes parent directories as needed.
  *