Jeff King <peff@xxxxxxxx> writes: > On Tue, Dec 13, 2011 at 01:10:26PM +0100, Erik Faye-Lund wrote: > >> +int xsetenv(const char *name, const char *val, int overwrite) >> +{ >> + if (setenv(name, val, overwrite)) >> + die_errno("setenv failed"); >> +} > > It probably doesn't matter, because the error condition is almost > certainly just "oops, we ran out of memory". But you could also print > the name of the variable being set, which may give the user a clue to > some misconfiguration (e.g., trying to put some extremely long value > into the environment). Do we have enough memory to format that message in that situation ;-)? -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html