summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-08-15 19:40:35 +0000
committerBram Moolenaar <Bram@vim.org>2006-08-15 19:40:35 +0000
commit5f40231e5a154698acd8c0e780216341d640ecf8 (patch)
tree935e8861ed2ff897773f612610f9611410e4a074 /src/main.c
parent821d20a92101ee30eb1628297bc6a1e1f9f7c9b7 (diff)
updated for version 7.0-052v7.0.052
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 86558e0f47..8c32106a39 100644
--- a/src/main.c
+++ b/src/main.c
@@ -3212,10 +3212,15 @@ prepare_server(parmp)
* Register for remote command execution with :serversend and --remote
* unless there was a -X or a --servername '' on the command line.
* Only register nongui-vim's with an explicit --servername argument.
+ * When running as root --servername is also required.
*/
if (X_DISPLAY != NULL && parmp->servername != NULL && (
# ifdef FEAT_GUI
- gui.in_use ||
+ (gui.in_use
+# ifdef UNIX
+ && getuid() != 0
+# endif
+ ) ||
# endif
parmp->serverName_arg != NULL))
{