mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
9c15bd311d
lp_load() could not be called multiple times to modify parameter settings based on reading from multiple configuration settings. Each time, it initialized all of the settings back to their defaults before reading the specified configuration file. This patch adds a parameter to lp_load() specifying whether the settings should be initialized. It does, however, still force the settings to be initialized the first time, even if the request was to not initialize them. (Not doing so could wreak havoc due to uninitialized values.) (This used to be commit f2a24de769d1b2266e576597c57a8e3b1e2a2b51)
55 lines
1.0 KiB
C
55 lines
1.0 KiB
C
/*
|
|
* Copyright (C) 2003 by Martin Pool
|
|
* Copyright (C) 2003 by Andrew Bartlett
|
|
*
|
|
* Test harness for push_ucs2
|
|
*/
|
|
|
|
#include "includes.h"
|
|
|
|
static int check_push_ucs2(const char *orig)
|
|
{
|
|
smb_ucs2_t *dest = NULL;
|
|
char *orig2 = NULL;
|
|
int ret;
|
|
|
|
push_ucs2_allocate(&dest, orig);
|
|
pull_ucs2_allocate(&orig2, dest);
|
|
ret = strcmp(orig, orig2);
|
|
if (ret) {
|
|
fprintf(stderr, "orig: %s\n", orig);
|
|
fprintf(stderr, "orig (UNIX -> UCS2 -> UNIX): %s\n", orig2);
|
|
}
|
|
|
|
SAFE_FREE(dest);
|
|
SAFE_FREE(orig2);
|
|
|
|
return ret;
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int i, ret = 0;
|
|
int count = 1;
|
|
|
|
/* Needed to initialize character set */
|
|
lp_load("/dev/null", True, False, False, True);
|
|
|
|
if (argc < 2) {
|
|
fprintf(stderr, "usage: %s STRING1 [COUNT]\n"
|
|
"Checks that a string translated UNIX->UCS2->UNIX is unchanged\n"
|
|
"Should be always 0\n",
|
|
argv[0]);
|
|
return 2;
|
|
}
|
|
if (argc >= 3)
|
|
count = atoi(argv[2]);
|
|
|
|
for (i = 0; ((i < count) && (!ret)); i++)
|
|
ret = check_push_ucs2(argv[1]);
|
|
|
|
printf("%d\n", ret);
|
|
|
|
return 0;
|
|
}
|