summaryrefslogtreecommitdiff
path: root/src/auth.c
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2009-04-24 14:43:15 +0000
committercorvid <corvid@lavabit.com>2009-04-24 14:43:15 +0000
commit3b8078f51c75b6d9160688c544db60729df83e90 (patch)
tree771201b87f9c953fbe9154ade21e2eb0629cadb5 /src/auth.c
parentd8e27cdd2c142eefb0c99eac9f8861b4e5e64027 (diff)
dStrdup
Diffstat (limited to 'src/auth.c')
-rw-r--r--src/auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auth.c b/src/auth.c
index e0bd62a8..8a15c232 100644
--- a/src/auth.c
+++ b/src/auth.c
@@ -362,7 +362,7 @@ static void Auth_realm_add_path(AuthRealm_t *realm, const char *path)
int len, i;
char *realm_path, *n_path;
- n_path = strdup(path);
+ n_path = dStrdup(path);
len = strlen(n_path);
/* remove trailing '/' */