diff options
author | Kaushik BV <kaushikbv@gluster.com> | 2011-09-23 19:05:35 +0530 |
---|---|---|
committer | Vijay Bellur <vijay@gluster.com> | 2011-10-01 05:56:01 -0700 |
commit | 72cade6db5fd3f6f001295a5f4edeecf44e36045 (patch) | |
tree | f8f967ca3a1ec7bafa6180366ecb85c42bada86c /libglusterfs/src | |
parent | c2548c3247a17b3b415295fcbb4c119f4a579831 (diff) |
build: Solaris build fixes
Change-Id: I977903f26dbb2c8d1632b3a1c52bd8af4ce8652f
BUG: 3446
Reviewed-on: http://review.gluster.com/502
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Amar Tumballi <amar@gluster.com>
Diffstat (limited to 'libglusterfs/src')
-rw-r--r-- | libglusterfs/src/compat.c | 21 | ||||
-rw-r--r-- | libglusterfs/src/compat.h | 2 |
2 files changed, 22 insertions, 1 deletions
diff --git a/libglusterfs/src/compat.c b/libglusterfs/src/compat.c index 90b86d20d..a5a49d4e6 100644 --- a/libglusterfs/src/compat.c +++ b/libglusterfs/src/compat.c @@ -528,6 +528,27 @@ solaris_rename (const char *old_path, const char *new_path) return rename(old_path, new_path); } + + +char * +mkdtemp (char *tempstring) +{ + char *new_string = NULL; + int ret = 0; + + new_string = mktemp (tempstring); + if (!new_string) + goto out; + + ret = mkdir (new_string, 0700); + if (ret < 0) + new_string = NULL; + +out: + return new_string; +} + + #endif /* GF_SOLARIS_HOST_OS */ #ifndef HAVE_STRNLEN diff --git a/libglusterfs/src/compat.h b/libglusterfs/src/compat.h index b37307f40..b04a71df4 100644 --- a/libglusterfs/src/compat.h +++ b/libglusterfs/src/compat.h @@ -287,7 +287,7 @@ int solaris_unlink (const char *pathname); #define GF_SOLARIS_XATTR_DIR ".glusterfs_xattr_inode" int solaris_xattr_resolve_path (const char *real_path, char **path); - +char *mkdtemp (char *__template); #endif /* GF_SOLARIS_HOST_OS */ #ifndef HAVE_ARGP |