From f29a0d90a3afd5a12cdd70e0090c6e7c0c447293 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 21 Oct 2006 16:46:30 +0000 Subject: r19446: Comment can be NULL now (This used to be commit f4dcb9bd56dc61bc2d254f1fb8a648ef9fc6aa8f) --- source3/utils/net_rpc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source3/utils/net_rpc.c b/source3/utils/net_rpc.c index 33889235bf..e7bf53ad3f 100644 --- a/source3/utils/net_rpc.c +++ b/source3/utils/net_rpc.c @@ -3121,7 +3121,8 @@ static void display_share_info_1(struct srvsvc_NetShareInfo1 *info1) { if (opt_long_list_entries) { d_printf("%-12s %-8.8s %-50s\n", - info1->name, share_type[info1->type], info1->comment); + info1->name, share_type[info1->type], + info1->comment ? info1->comment : ""); } else { d_printf("%s\n", info1->name); } -- cgit