diff options
author | Günther Deschner <gd@samba.org> | 2008-04-08 14:29:21 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-04-08 14:29:21 +0200 |
commit | 394bdb89ef350db0ab6aca093054e1048a8ffe1f (patch) | |
tree | de9baa63437ea49403780ab0915ad97f6f550227 /source | |
parent | 15ba45e567d910c1b2336dcc0c475e12b082f30f (diff) | |
download | samba-394bdb89ef350db0ab6aca093054e1048a8ffe1f.tar.gz samba-394bdb89ef350db0ab6aca093054e1048a8ffe1f.tar.xz samba-394bdb89ef350db0ab6aca093054e1048a8ffe1f.zip |
Prefill in username in libnetapi ctx.
Guenther
Diffstat (limited to 'source')
-rw-r--r-- | source/lib/netapi/netapi.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/source/lib/netapi/netapi.c b/source/lib/netapi/netapi.c index 82a8a8d3cd8..fbec2757f0f 100644 --- a/source/lib/netapi/netapi.c +++ b/source/lib/netapi/netapi.c @@ -81,6 +81,13 @@ NET_API_STATUS libnetapi_init(struct libnetapi_ctx **context) setenv(KRB5_ENV_CCNAME, ctx->krb5_cc_env, 1); } + ctx->username = talloc_strdup(frame, getenv("USER")); + if (!ctx->username) { + TALLOC_FREE(frame); + fprintf(stderr, "out of memory\n"); + return W_ERROR_V(WERR_NOMEM); + } + libnetapi_initialized = true; *context = stat_ctx = ctx; @@ -162,7 +169,8 @@ NET_API_STATUS libnetapi_set_username(struct libnetapi_ctx *ctx, const char *username) { TALLOC_FREE(ctx->username); - ctx->username = talloc_strdup(ctx, username); + ctx->username = talloc_strdup(ctx, username ? username : ""); + if (!ctx->username) { return W_ERROR_V(WERR_NOMEM); } |