2006-12-19 23:34:12 +01:00
|
|
|
#include "../git-compat-util.h"
|
2005-12-03 00:08:28 +01:00
|
|
|
|
|
|
|
int gitsetenv(const char *name, const char *value, int replace)
|
|
|
|
{
|
|
|
|
int out;
|
|
|
|
size_t namelen, valuelen;
|
|
|
|
char *envstr;
|
|
|
|
|
2011-12-14 15:07:09 +01:00
|
|
|
if (!name || strchr(name, '=') || !value) {
|
2011-12-14 15:07:08 +01:00
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
2005-12-03 00:08:28 +01:00
|
|
|
if (!replace) {
|
|
|
|
char *oldval = NULL;
|
|
|
|
oldval = getenv(name);
|
|
|
|
if (oldval) return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
namelen = strlen(name);
|
|
|
|
valuelen = strlen(value);
|
2005-12-04 23:41:35 +01:00
|
|
|
envstr = malloc((namelen + valuelen + 2));
|
2011-12-14 15:07:08 +01:00
|
|
|
if (!envstr) {
|
|
|
|
errno = ENOMEM;
|
|
|
|
return -1;
|
|
|
|
}
|
2005-12-03 00:08:28 +01:00
|
|
|
|
|
|
|
memcpy(envstr, name, namelen);
|
|
|
|
envstr[namelen] = '=';
|
|
|
|
memcpy(envstr + namelen + 1, value, valuelen);
|
|
|
|
envstr[namelen + valuelen + 1] = 0;
|
|
|
|
|
|
|
|
out = putenv(envstr);
|
2005-12-04 23:41:35 +01:00
|
|
|
/* putenv(3) makes the argument string part of the environment,
|
|
|
|
* and changing that string modifies the environment --- which
|
|
|
|
* means we do not own that storage anymore. Do not free
|
|
|
|
* envstr.
|
|
|
|
*/
|
2005-12-03 00:08:28 +01:00
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|