diff options
| author | Andreas Schwab | 2005-12-30 11:03:41 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2005-12-30 11:03:41 +0000 |
| commit | 82a800588d6b61c242204866f09a606c27e205a4 (patch) | |
| tree | 1c5f188d82ac6affe00822fa58486996a7fd6a32 /src/process.c | |
| parent | 67d766e8c1bd89e9a7f31718f9905b372be5012c (diff) | |
| download | emacs-82a800588d6b61c242204866f09a606c27e205a4.tar.gz emacs-82a800588d6b61c242204866f09a606c27e205a4.zip | |
(Fnetwork_interface_info): Correctly terminate the
loop over ifflag_table.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 516e4639c34..b88617a2c0f 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -3558,7 +3558,7 @@ FLAGS is the current flags of the interface. */) | |||
| 3558 | int fnum; | 3558 | int fnum; |
| 3559 | 3559 | ||
| 3560 | any++; | 3560 | any++; |
| 3561 | for (fp = ifflag_table; flags != 0 && fp; fp++) | 3561 | for (fp = ifflag_table; flags != 0 && fp->flag_sym; fp++) |
| 3562 | { | 3562 | { |
| 3563 | if (flags & fp->flag_bit) | 3563 | if (flags & fp->flag_bit) |
| 3564 | { | 3564 | { |