summaryrefslogtreecommitdiff
path: root/graphics/xv/patches/patch-ab
blob: 51afa5b489e3322b49a7c59b18fca322a64f2dc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
$NetBSD: patch-ab,v 1.3 1998/08/07 10:40:55 agc Exp $

*** vdcomp.c.orig	Fri Dec 23 01:34:47 1994
--- vdcomp.c	Mon Nov 18 02:52:59 1996
***************
*** 108,114 ****
       !defined(bsd43)                     && \
       !defined(aux)                       && \
       !defined(__bsdi__)                  && \
!      !defined(sequent)
  
  #  if defined(hp300) || defined(hp800) || defined(NeXT)
  #   include <sys/malloc.h>                /* it's in 'sys' on HPs and NeXT */
--- 108,115 ----
       !defined(bsd43)                     && \
       !defined(aux)                       && \
       !defined(__bsdi__)                  && \
!      !defined(sequent)			 && \
!      !defined(__FreeBSD__) && !defined(__NetBSD__)
  
  #  if defined(hp300) || defined(hp800) || defined(NeXT)
  #   include <sys/malloc.h>                /* it's in 'sys' on HPs and NeXT */
***************
*** 429,438 ****
  {
    short   shortint;
    typedef long    off_t;
  
    if (inname[0] == ' ') {
      printf("\nEnter name of file to be decompressed: ");
!     gets (inname);
    }
  
    if (host == 1 | host == 2) {
--- 430,442 ----
  {
    short   shortint;
    typedef long    off_t;
+   char *s;
  
    if (inname[0] == ' ') {
      printf("\nEnter name of file to be decompressed: ");
!     fgets (inname, sizeof(inname), stdin);
!     if ((s = strchr(inname, '\n')) != NULL)
! 	*s = '\0';
    }
  
    if (host == 1 | host == 2) {
***************
*** 474,486 ****
        printf("\n  3.  VICAR format.");
        printf("\n  4.  Unlabelled binary array.\n");
        printf("\n  Enter format number:");
!       gets(inname);
        output_format = atoi(inname);
      } while (output_format < 1 || output_format > 4);
  
    if (outname[0] == ' ') {
      printf("\nEnter name of uncompressed output file: ");
!     gets (outname);
    }
  
    return(host);
--- 478,494 ----
        printf("\n  3.  VICAR format.");
        printf("\n  4.  Unlabelled binary array.\n");
        printf("\n  Enter format number:");
!       fgets (inname, sizeof(inname), stdin);
!       if ((s = strchr(inname, '\n')) != NULL)
! 	  *s = '\0';
        output_format = atoi(inname);
      } while (output_format < 1 || output_format > 4);
  
    if (outname[0] == ' ') {
      printf("\nEnter name of uncompressed output file: ");
!     fgets (outname, sizeof(outname), stdin);
!     if ((s = strchr(outname, '\n')) != NULL)
! 	*s = '\0';
    }
  
    return(host);