From: billh Date: Tue, 11 Dec 2001 17:41:00 +0000 (+0000) Subject: Fixed use of setenv () which broke Solaris build. X-Git-Tag: AT_SPI2_ATK_2_12_0~1472 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git;a=commitdiff_plain;h=76a3124838e1e42981d2923b75b5cda0379ab65d Fixed use of setenv () which broke Solaris build. git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@177 e2bd861d-eb25-0410-b326-f6ed22b6b98c --- diff --git a/ChangeLog b/ChangeLog index 3bf2bc6..fd3d3e7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-12-11 Bill Haneman + + * test/simple-at.c: + Replace setenv() call with putenv (). + 2001-12-11 Michael Meeks * libspi/image.c (impl_getImageExtents): impl. diff --git a/test/simple-at.c b/test/simple-at.c index a27f4bb..1e6e511 100644 --- a/test/simple-at.c +++ b/test/simple-at.c @@ -140,7 +140,7 @@ main (int argc, char **argv) SPI_event_main (); - setenv ("AT_BRIDGE_SHUTDOWN", "1", TRUE); + putenv ("AT_BRIDGE_SHUTDOWN=1"); return SPI_exit (); }