summaryrefslogtreecommitdiff
path: root/usr/src/common/smbsrv/smb_string.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/common/smbsrv/smb_string.c')
-rw-r--r--usr/src/common/smbsrv/smb_string.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/usr/src/common/smbsrv/smb_string.c b/usr/src/common/smbsrv/smb_string.c
index 992c660c7a..8400c51ea1 100644
--- a/usr/src/common/smbsrv/smb_string.c
+++ b/usr/src/common/smbsrv/smb_string.c
@@ -19,12 +19,13 @@
* CDDL HEADER END
*/
/*
- * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
* Copyright 2010 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
+ *
+ * Copyright 2014 Nexenta Systems, Inc. All rights reserved.
*/
-#ifdef _KERNEL
+#if defined(_KERNEL) || defined(_FAKE_KERNEL)
#include <sys/types.h>
#include <sys/sunddi.h>
#else
@@ -442,7 +443,7 @@ smb_unc_init(const char *path, smb_unc_t *unc)
bzero(unc, sizeof (smb_unc_t));
-#ifdef _KERNEL
+#if defined(_KERNEL) || defined(_FAKE_KERNEL)
unc->unc_buf = smb_mem_strdup(path);
#else
if ((unc->unc_buf = strdup(path)) == NULL)
@@ -493,7 +494,7 @@ smb_unc_free(smb_unc_t *unc)
if (unc == NULL)
return;
-#ifdef _KERNEL
+#if defined(_KERNEL) || defined(_FAKE_KERNEL)
smb_mem_free(unc->unc_buf);
#else
free(unc->unc_buf);