tell unsetenv for solaris to return the result of the setenv call

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@16008 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2006-03-29 04:15:11 +00:00
parent 8d417967ce
commit ecf158b51e

View File

@@ -49,6 +49,6 @@ int setenv(const char *name, const char *value, int overwrite)
int unsetenv(const char *name)
{
setenv(name,"",0);
return setenv(name, "", 0);
}