diff options
Diffstat (limited to 'common/env_sf.c')
| -rw-r--r-- | common/env_sf.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/env_sf.c b/common/env_sf.c index 47c6a7066..41cc00aea 100644 --- a/common/env_sf.c +++ b/common/env_sf.c @@ -92,7 +92,7 @@ int saveenv(void)  	}  	res = (char *)&env_new.data; -	len = hexport('\0', &res, ENV_SIZE); +	len = hexport_r(&env_htab, '\0', &res, ENV_SIZE);  	if (len < 0) {  		error("Cannot export environment: errno = %d\n", errno);  		return 1; @@ -308,7 +308,7 @@ int saveenv(void)  	}  	res = (char *)&env_new.data; -	len = hexport('\0', &res, ENV_SIZE); +	len = hexport_r(&env_htab, '\0', &res, ENV_SIZE);  	if (len < 0) {  		error("Cannot export environment: errno = %d\n", errno);  		goto done; |