summaryrefslogtreecommitdiffstats
path: root/sys/libkern/strdup.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/libkern/strdup.c')
-rw-r--r--sys/libkern/strdup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/libkern/strdup.c b/sys/libkern/strdup.c
index 74953ff..82cece0 100644
--- a/sys/libkern/strdup.c
+++ b/sys/libkern/strdup.c
@@ -42,13 +42,13 @@
MALLOC_DEFINE(M_STRING, "string", "string buffers");
char *
-strdup(const char *string)
+strdup(const char *string, struct malloc_type *type)
{
size_t len;
char *copy;
len = strlen(string) + 1;
- copy = malloc(len, M_STRING, M_WAITOK);
+ copy = malloc(len, type, M_WAITOK);
bcopy(string, copy, len);
return (copy);
}
OpenPOWER on IntegriCloud