]> git.pld-linux.org Git - packages/msmtp.git/blame - msmtp-home_etc.patch
- up to 1.4.22
[packages/msmtp.git] / msmtp-home_etc.patch
CommitLineData
348f89a7
KK
1--- msmtp-1.4.7/src/tools.c.orig 2006-07-04 08:38:27.000000000 +0200
2+++ msmtp-1.4.7/src/tools.c 2006-08-21 14:46:04.764737250 +0200
3@@ -269,7 +269,9 @@
348710f2
MWP
4 char *home;
5 struct passwd *pw;
49bbceb7 6
4cda1e1d 7- if ((home = getenv("HOME")))
348710f2 8+ home = getenv("HOME_ETC");
4cda1e1d 9+ if (home == NULL) home = getenv("HOME");
10+ if (home != NULL)
f66b1c44 11 {
49bbceb7 12 home = xstrdup(home);
4cda1e1d 13 }
This page took 0.067936 seconds and 4 git commands to generate.