Adding the openssh patch I forgot in a recent commit

svn path=/nixpkgs/trunk/; revision=21681

+15
+15
pkgs/tools/networking/openssh/locale_archive.patch
··· 1 + diff --git a/session.c b/session.c 2 + index e032de6..44db2bb 100644 3 + --- a/session.c 4 + +++ b/session.c 5 + @@ -1196,6 +1196,10 @@ do_setup_env(Session *s, const char *shell) 6 + if (getenv("TZ")) 7 + child_set_env(&env, &envsize, "TZ", getenv("TZ")); 8 + 9 + + /* NixOS path to the glibc locale archive, to be set in the upstart job */ 10 + + if (getenv("LOCALE_ARCHIVE")) 11 + + child_set_env(&env, &envsize, "LOCALE_ARCHIVE", getenv("LOCALE_ARCHIVE")); 12 + + 13 + /* Set custom environment options from RSA authentication. */ 14 + if (!options.use_login) { 15 + while (custom_environment) {