mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.9 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/base/kbd/devpts.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2004 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. --- ./openvt/openvt.c.orig 2003-08-16 16:44:04.000000000 +0300
  20. +++ ./openvt/openvt.c 2003-08-16 16:42:01.000000000 +0300
  21. @@ -100,18 +100,18 @@
  22. }
  23. consfd = getfd();
  24. - if (consfd < 0) {
  25. - fprintf(stderr,
  26. - _("Couldnt get a file descriptor referring to the console\n"));
  27. - return(2);
  28. - }
  29. - if (ioctl(consfd, VT_GETSTATE, &vtstat) < 0) {
  30. + if (consfd >= 0 && ioctl(consfd, VT_GETSTATE, &vtstat) < 0) {
  31. perror("openvt: VT_GETSTATE");
  32. return(4);
  33. }
  34. if (vtno == -1) {
  35. + if (consfd < 0) {
  36. + fprintf(stderr,
  37. + _("Couldnt get a file descriptor referring to the console\n"));
  38. + return(2);
  39. + }
  40. if ((ioctl(consfd, VT_OPENQRY, &vtno) < 0) || (vtno == -1)) {
  41. perror("openvt: VT_OPENQRY");
  42. fprintf(stderr, _("openvt: cannot find a free vt\n"));
  43. @@ -267,7 +267,7 @@
  44. if ( do_wait ) {
  45. wait(NULL);
  46. - if (show) { /* Switch back... */
  47. + if (show && consfd >= 0) { /* Switch back... */
  48. if (ioctl(consfd, VT_ACTIVATE, vtstat.v_active)) {
  49. perror("VT_ACTIVATE");
  50. return 8;