From bb4cffbd97793c9ea1001571639ff12348644ae4 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 8 Jun 2009 09:45:21 +0200 Subject: Fix bug 6449 Thanks to TAKAHASHI Motonobu for reporting! --- source3/utils/net_rap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/utils/net_rap.c b/source3/utils/net_rap.c index dd757abd1a..573f18db60 100644 --- a/source3/utils/net_rap.c +++ b/source3/utils/net_rap.c @@ -822,7 +822,7 @@ static int rap_user_add(struct net_context *c, int argc, const char **argv) userinfo.userflags = c->opt_flags; userinfo.reserved1 = '\0'; - userinfo.comment = smb_xstrdup(c->opt_comment); + userinfo.comment = smb_xstrdup(c->opt_comment ? c->opt_comment : ""); userinfo.priv = 1; userinfo.home_dir = NULL; userinfo.logon_script = NULL; -- cgit