mountpassword      97 source3/client/mount.cifs.c static char * mountpassword = NULL;
mountpassword     181 source3/client/mount.cifs.c 	SAFE_FREE(mountpassword);
mountpassword     265 source3/client/mount.cifs.c 					if(mountpassword == NULL) {
mountpassword     266 source3/client/mount.cifs.c 						mountpassword = (char *)calloc(MOUNT_PASSWD_SIZE+1,1);
mountpassword     268 source3/client/mount.cifs.c 						memset(mountpassword,0,MOUNT_PASSWD_SIZE);
mountpassword     269 source3/client/mount.cifs.c 					if(mountpassword) {
mountpassword     270 source3/client/mount.cifs.c 						strlcpy(mountpassword,temp_val,MOUNT_PASSWD_SIZE+1);
mountpassword     317 source3/client/mount.cifs.c 	if(mountpassword == NULL)
mountpassword     318 source3/client/mount.cifs.c 		mountpassword = (char *)calloc(MOUNT_PASSWD_SIZE+1,1);
mountpassword     320 source3/client/mount.cifs.c 		memset(mountpassword, 0, MOUNT_PASSWD_SIZE);
mountpassword     322 source3/client/mount.cifs.c 	if (mountpassword == NULL) {
mountpassword     351 source3/client/mount.cifs.c 			if(mountpassword[0] == 0) {
mountpassword     358 source3/client/mount.cifs.c 				mountpassword[i] = '\0';
mountpassword     361 source3/client/mount.cifs.c 				mountpassword[i] = c;
mountpassword     450 source3/client/mount.cifs.c 						if(mountpassword == NULL)
mountpassword     451 source3/client/mount.cifs.c 							mountpassword = (char *)calloc(MOUNT_PASSWD_SIZE+1,1);
mountpassword     452 source3/client/mount.cifs.c 						if(mountpassword) {
mountpassword     457 source3/client/mount.cifs.c 							strlcpy(mountpassword, percent_char,MOUNT_PASSWD_SIZE+1);
mountpassword     488 source3/client/mount.cifs.c 					mountpassword = strndup(value, MOUNT_PASSWD_SIZE);
mountpassword     489 source3/client/mount.cifs.c 					if (!mountpassword) {
mountpassword    1272 source3/client/mount.cifs.c 			if(mountpassword == NULL)
mountpassword    1273 source3/client/mount.cifs.c 				mountpassword = (char *)calloc(MOUNT_PASSWD_SIZE+1,1);
mountpassword    1274 source3/client/mount.cifs.c 			if(mountpassword) {
mountpassword    1276 source3/client/mount.cifs.c 				strlcpy(mountpassword,optarg,MOUNT_PASSWD_SIZE+1);
mountpassword    1300 source3/client/mount.cifs.c 		if(mountpassword == NULL)
mountpassword    1301 source3/client/mount.cifs.c 			mountpassword = (char *)calloc(MOUNT_PASSWD_SIZE+1,1);
mountpassword    1302 source3/client/mount.cifs.c 		if(mountpassword) {
mountpassword    1303 source3/client/mount.cifs.c 			strlcpy(mountpassword,getenv("PASSWD"),MOUNT_PASSWD_SIZE+1);
mountpassword    1377 source3/client/mount.cifs.c 		mountpassword = (char *)calloc(MOUNT_PASSWD_SIZE+1,1);
mountpassword    1378 source3/client/mount.cifs.c 		if (!tmp_pass || !mountpassword) {
mountpassword    1382 source3/client/mount.cifs.c 		strlcpy(mountpassword, tmp_pass, MOUNT_PASSWD_SIZE+1);
mountpassword    1402 source3/client/mount.cifs.c 	if(mountpassword)
mountpassword    1403 source3/client/mount.cifs.c 		optlen += strlen(mountpassword) + 6;
mountpassword    1480 source3/client/mount.cifs.c 	if (mountpassword) {
mountpassword    1486 source3/client/mount.cifs.c 			check_for_comma(&mountpassword);
mountpassword    1488 source3/client/mount.cifs.c 		strlcat(options,mountpassword,options_size);
mountpassword    1585 source3/client/mount.cifs.c 	if(mountpassword) {
mountpassword    1586 source3/client/mount.cifs.c 		int len = strlen(mountpassword);
mountpassword    1587 source3/client/mount.cifs.c 		memset(mountpassword,0,len);
mountpassword    1588 source3/client/mount.cifs.c 		SAFE_FREE(mountpassword);
mountpassword      32 source4/client/mount.cifs.c char * mountpassword = NULL;
mountpassword     439 source4/client/mount.cifs.c 			 mountpassword = optarg;
mountpassword     476 source4/client/mount.cifs.c 			mountpassword = malloc(33);
mountpassword     477 source4/client/mount.cifs.c 			if(mountpassword) {
mountpassword     478 source4/client/mount.cifs.c 				strncpy(mountpassword,getenv("PASSWD"),32);
mountpassword     485 source4/client/mount.cifs.c 			mountpassword = getpass("Password: "); /* BB obsolete */
mountpassword     501 source4/client/mount.cifs.c 	if(mountpassword)
mountpassword     502 source4/client/mount.cifs.c 		optlen += strlen(mountpassword) + 6;
mountpassword     516 source4/client/mount.cifs.c 	if(mountpassword) {
mountpassword     518 source4/client/mount.cifs.c 		strcat(options,mountpassword);