summaryrefslogtreecommitdiff
path: root/source3/param
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2004-06-08 20:10:26 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:51:54 -0500
commit7e6734a0dd50c11601c60e86dee202004b2d6a90 (patch)
tree64b8969092693ec36c4d18fdf962428ffbdba6ac /source3/param
parent2fc57c9a2ce3a266534dd20e6fed4883e052c557 (diff)
downloadsamba-7e6734a0dd50c11601c60e86dee202004b2d6a90.tar.gz
samba-7e6734a0dd50c11601c60e86dee202004b2d6a90.tar.bz2
samba-7e6734a0dd50c11601c60e86dee202004b2d6a90.zip
r1087: BUG 1221: revert old change that used single and double quotes as delimters in next_token(), and change print_parameter() to print out parm values surrounded by double quotes (instead of single quotes)
(This used to be commit b0739b073a1db8b0b163726a1d181b2f05d71883)
Diffstat (limited to 'source3/param')
-rw-r--r--source3/param/loadparm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c
index 4ac2f8950f..2c65ac67d9 100644
--- a/source3/param/loadparm.c
+++ b/source3/param/loadparm.c
@@ -3273,9 +3273,9 @@ static void print_parameter(struct parm_struct *p, void *ptr, FILE * f)
char **list = *(char ***)ptr;
for (; *list; list++) {
- /* surround strings with whitespace in single quotes */
+ /* surround strings with whitespace in double quotes */
if ( strchr_m( *list, ' ' ) )
- fprintf(f, "\'%s\'%s", *list, ((*(list+1))?", ":""));
+ fprintf(f, "\"%s\"%s", *list, ((*(list+1))?", ":""));
else
fprintf(f, "%s%s", *list, ((*(list+1))?", ":""));
}