diff options
author | Jeremy Allison <jra@samba.org> | 2007-12-07 12:43:10 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-12-07 12:43:10 -0800 |
commit | ade51769d5f7291f912893e5f959b651223a68c1 (patch) | |
tree | aaf09396ce5711bee5305125ffb5b1ccb34940f8 /source3/utils | |
parent | acf15ae730c95443681404c76b67ccfca0253d8b (diff) | |
download | samba-ade51769d5f7291f912893e5f959b651223a68c1.tar.gz samba-ade51769d5f7291f912893e5f959b651223a68c1.tar.bz2 samba-ade51769d5f7291f912893e5f959b651223a68c1.zip |
We don't need P_GSTRING or P_UGSTRING anymore.
Jeremy.
(This used to be commit 78dc75600099b5b3b5a8ecffec747a227ff51d70)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net_conf.c | 4 |
1 files changed, 0 insertions, 4 deletions
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; |