From 90c86466dd5eb39ae69724c2fae3bea609268081 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sun, 6 Sep 2015 07:30:11 +0300 Subject: [PATCH] ssh_config: also sendenv LANGUAGE --- .mikaela/ssh/config | 4 ++-- etc/ssh/ssh_config | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.mikaela/ssh/config b/.mikaela/ssh/config index 2df5774b..f2a3d4f5 100644 --- a/.mikaela/ssh/config +++ b/.mikaela/ssh/config @@ -22,8 +22,8 @@ Host * # Always try public key authentication PubkeyAuthentication yes - # Send LANG and LC_* environment variables to the server. - SendEnv LANG LC_* + # Send LANG, LANGUAGE and LC_* environment variables to the server. + SendEnv LANG LANGUAGE LC_* # If the server doesn't reply in "three" pings, connection is dead. # Defaults to 3 anyway, but I add it here for clearity and diff --git a/etc/ssh/ssh_config b/etc/ssh/ssh_config index 5d24ae2b..3739e540 100644 --- a/etc/ssh/ssh_config +++ b/etc/ssh/ssh_config @@ -23,8 +23,8 @@ Host * # Always try public key authentication PubkeyAuthentication yes - # Send LANG and LC_* environment variables to the server. - SendEnv LANG LC_* + # Send LANG, LANGUAGE and LC_* environment variables to the server. + SendEnv LANG LANGUAGE LC_* # If the server doesn't reply in "three" pings, connection is dead. # Defaults to 3 anyway, but I add it here for clearity and