]> Dogcows Code - chaz/openbox/blobdiff - openbox/startupnotify.c
Change setenv and unsetenv to putenv for portability.
[chaz/openbox] / openbox / startupnotify.c
index 002bd2dc0521991af7dd9b9b73d9f2de06003eba..4c929e7eaf12c786e31fd10895f5acaef009a4c7 100644 (file)
@@ -61,7 +61,7 @@ void sn_startup(gboolean reconfig)
     if (reconfig) return;
 
     /* unset this so we don't pass it on unknowingly */
-    unsetenv("DESKTOP_STARTUP_ID");
+    putenv("DESKTOP_STARTUP_ID");
 
     sn_display = sn_display_new(ob_display, NULL, NULL);
     sn_context = sn_monitor_context_new(sn_display, ob_screen,
@@ -259,7 +259,7 @@ void sn_setup_spawn_environment(gchar *program, gchar *name,
                              g_direct_equal,
                              (GDestroyNotify)sn_launcher_context_unref);
 
-    setenv("DESKTOP_STARTUP_ID", id, TRUE);
+    putenv(g_strdup_printf("DESKTOP_STARTUP_ID=%s", id));
 
     g_free(desc);
 }
This page took 0.025573 seconds and 4 git commands to generate.