aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1999-01-31 18:23:17 +0000
committerEric S. Raymond <esr@thyrsus.com>1999-01-31 18:23:17 +0000
commit1715ab1008073e39d9355e58fea0a6fa62f9ebd7 (patch)
tree7f20db02e04b95535c5a01ec6d4e94edceb73779 /fetchmail.c
parentd460f445287037708d6962fff4082704164850e9 (diff)
downloadfetchmail-1715ab1008073e39d9355e58fea0a6fa62f9ebd7.tar.gz
fetchmail-1715ab1008073e39d9355e58fea0a6fa62f9ebd7.tar.bz2
fetchmail-1715ab1008073e39d9355e58fea0a6fa62f9ebd7.zip
Move /proc/net/dev derivation to runtime.
svn path=/trunk/; revision=2367
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 17d278f3..d2c31744 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -478,6 +478,10 @@ int main (int argc, char **argv)
signal(SIGHUP, SIG_IGN);
}
+#ifdef linux
+ interface_init();
+#endif /* linux */
+
/* beyond here we don't want more than one fetchmail running per user */
umask(0077);
signal(SIGABRT, termhook);