diff options
-rw-r--r-- | source3/utils/net_conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/net_conf.c b/source3/utils/net_conf.c index 6f23a00177..febc8dc9e1 100644 --- a/source3/utils/net_conf.c +++ b/source3/utils/net_conf.c @@ -527,7 +527,7 @@ static int import_process_service(TALLOC_CTX *ctx, } break; case P_OCTAL: - talloc_asprintf(ctx, "%s", octal_string(*(int *)ptr)); + valstr = talloc_asprintf(ctx, "%s", octal_string(*(int *)ptr)); break; case P_LIST: valstr = talloc_strdup(ctx, ""); @@ -553,7 +553,7 @@ static int import_process_service(TALLOC_CTX *ctx, break; case P_INTEGER: valtype = "dword"; - talloc_asprintf(ctx, "%d", *(int *)ptr); + valstr = talloc_asprintf(ctx, "%d", *(int *)ptr); break; case P_SEP: break; |