Fixed use of setenv () which broke Solaris build.
authorbillh <billh@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Tue, 11 Dec 2001 17:41:00 +0000 (17:41 +0000)
committerbillh <billh@e2bd861d-eb25-0410-b326-f6ed22b6b98c>
Tue, 11 Dec 2001 17:41:00 +0000 (17:41 +0000)
git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@177 e2bd861d-eb25-0410-b326-f6ed22b6b98c

ChangeLog
test/simple-at.c

index 3bf2bc6..fd3d3e7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-12-11  Bill Haneman <bill.haneman@sun.com>
+
+       * test/simple-at.c:
+       Replace setenv() call with putenv ().
+
 2001-12-11  Michael Meeks  <michael@ximian.com>
 
        * libspi/image.c (impl_getImageExtents): impl.
index a27f4bb..1e6e511 100644 (file)
@@ -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 ();
 }