imon wasn't devfs-compliant yet.

This commit is contained in:
paul 2001-08-22 11:12:00 +00:00
parent 9614e1b946
commit b75c120cc0
1 changed files with 11 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/* $Id: imon.c,v 1.4 2000/06/13 10:51:06 armin Exp $ /* $Id: imon.c,v 1.5 2001/08/22 11:12:00 paul Exp $
* *
* iMON , extended version. * iMON , extended version.
* original iMON source (c) Michael Knigge * original iMON source (c) Michael Knigge
@ -19,6 +19,9 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
* *
* $Log: imon.c,v $ * $Log: imon.c,v $
* Revision 1.5 2001/08/22 11:12:00 paul
* imon wasn't devfs-compliant yet.
*
* Revision 1.4 2000/06/13 10:51:06 armin * Revision 1.4 2000/06/13 10:51:06 armin
* fixed status output if channels are in * fixed status output if channels are in
* a different order. * a different order.
@ -510,12 +513,14 @@ int main(int argc, char **argv) {
usage(); usage();
} }
if (!(isdninfo = fopen("/dev/isdninfo", "r"))) {
if (!(isdninfo = fopen("/dev/isdn/isdninfo", "r"))) {
perror("Can't open /dev/isdn/isdninfo nor /dev/isdninfo");
return 1;
}
}
if (phonebook) if (phonebook)
readphonebook(); readphonebook();
if (!(isdninfo = fopen("/dev/isdninfo", "r"))) {
fprintf(stderr, "Can't open /dev/isdninfo\n");
return(-1);
}
/* /*
* initialize ncurses and draw the main screen * initialize ncurses and draw the main screen
@ -597,8 +602,7 @@ int main(int argc, char **argv) {
if (errno != EINTR) { if (errno != EINTR) {
perror("select"); perror("select");
sleep(5); sleep(5);
exit(-1); return 2;
break;
} }
} }
imon_draw_status(color, &current_time); imon_draw_status(color, &current_time);