From ade51769d5f7291f912893e5f959b651223a68c1 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 7 Dec 2007 12:43:10 -0800 Subject: We don't need P_GSTRING or P_UGSTRING anymore. Jeremy. (This used to be commit 78dc75600099b5b3b5a8ecffec747a227ff51d70) --- source3/utils/net_conf.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'source3/utils/net_conf.c') diff --git a/source3/utils/net_conf.c b/source3/utils/net_conf.c index 4ff4bd9a29..16b372ca72 100644 --- a/source3/utils/net_conf.c +++ b/source3/utils/net_conf.c @@ -474,10 +474,6 @@ static char *parm_valstr(TALLOC_CTX *ctx, struct parm_struct *parm, case P_USTRING: valstr = talloc_asprintf(ctx, "%s", *(char **)ptr); break; - case P_GSTRING: - case P_UGSTRING: - valstr = talloc_asprintf(ctx, "%s", (char *)ptr); - break; case P_BOOL: valstr = talloc_asprintf(ctx, "%s", BOOLSTR(*(bool *)ptr)); break; -- cgit