diff options
author | Michael Nottebrock <lofi@FreeBSD.org> | 2007-11-15 07:56:44 +0000 |
---|---|---|
committer | Michael Nottebrock <lofi@FreeBSD.org> | 2007-11-15 07:56:44 +0000 |
commit | 28aa3029339327ef71b515a789af8c7e9b109688 (patch) | |
tree | 3346d19247294c8659d0d655225a16a51ea43d5a /x11/kdebase4-workspace | |
parent | 875e0c3a18df41173c4a2014f91e606029680a75 (diff) | |
download | ports-28aa3029339327ef71b515a789af8c7e9b109688.tar.gz ports-28aa3029339327ef71b515a789af8c7e9b109688.zip |
Notes
Diffstat (limited to 'x11/kdebase4-workspace')
-rw-r--r-- | x11/kdebase4-workspace/files/patch-kdesu_kdesu-kdesu.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/x11/kdebase4-workspace/files/patch-kdesu_kdesu-kdesu.cpp b/x11/kdebase4-workspace/files/patch-kdesu_kdesu-kdesu.cpp new file mode 100644 index 000000000000..a289f1d1c74e --- /dev/null +++ b/x11/kdebase4-workspace/files/patch-kdesu_kdesu-kdesu.cpp @@ -0,0 +1,14 @@ +--- kdesu/kdesu/kdesu.cpp 2006/04/12 13:14:22 529044 ++++ kdesu/kdesu/kdesu.cpp 2007/11/13 15:10:52 736127 +@@ -113,7 +113,10 @@ + unsetenv( "SESSION_MANAGER" ); + KApplication app; + // but propagate it to the started app +- setenv( "SESSION_MANAGER", session_manager.data(), 1 ); ++ if (session_manager.data()) ++ { ++ setenv( "SESSION_MANAGER", session_manager.data(), 1 ); ++ } + + { + KStartupInfoId id; |