summaryrefslogtreecommitdiff
path: root/psutil/_psutil_posix.c
diff options
context:
space:
mode:
authorChris <phobozad@gmail.com>2020-09-21 13:01:43 -0500
committerGitHub <noreply@github.com>2020-09-21 20:01:43 +0200
commit1d5073aac29a3f50c19b864d22688cf20447f1e9 (patch)
tree3f0b9ffbb0442857d49e9756c40dd676c979cf18 /psutil/_psutil_posix.c
parente38a80cec89f53bbcc5013b76b16aa712326c31f (diff)
downloadpsutil-1d5073aac29a3f50c19b864d22688cf20447f1e9.tar.gz
Use IFF_RUNNING instead of IFF_UP for Linux (#1831)
Co-authored-by: Chris Burger <chris@boop.li>
Diffstat (limited to 'psutil/_psutil_posix.c')
-rw-r--r--psutil/_psutil_posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/psutil/_psutil_posix.c b/psutil/_psutil_posix.c
index f7f8b92d..8fe7f6b7 100644
--- a/psutil/_psutil_posix.c
+++ b/psutil/_psutil_posix.c
@@ -404,7 +404,7 @@ psutil_net_if_flags(PyObject *self, PyObject *args) {
goto error;
close(sock);
- if ((ifr.ifr_flags & IFF_UP) != 0)
+ if ((ifr.ifr_flags & IFF_RUNNING) != 0)
return Py_BuildValue("O", Py_True);
else
return Py_BuildValue("O", Py_False);