about summary refs log tree commit diff stats
path: root/WWW/Library/Implementation/HTVMSUtils.c
diff options
context:
space:
mode:
Diffstat (limited to 'WWW/Library/Implementation/HTVMSUtils.c')
-rw-r--r--WWW/Library/Implementation/HTVMSUtils.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/WWW/Library/Implementation/HTVMSUtils.c b/WWW/Library/Implementation/HTVMSUtils.c
index ae103082..775d411f 100644
--- a/WWW/Library/Implementation/HTVMSUtils.c
+++ b/WWW/Library/Implementation/HTVMSUtils.c
@@ -954,25 +954,25 @@ PUBLIC int HTVMSBrowseDir ARGS4(
      *  Output the title and header.
      */
     START(HTML_HTML);
-    PUTS("\n");
+    PUTC('\n');
     START(HTML_HEAD);
-    PUTS("\n");
+    PUTC('\n');
     HTUnEscape(title);
     START(HTML_TITLE);
     PUTS(title);
     PUTS(" directory");
     END(HTML_TITLE);
-    PUTS("\n");
+    PUTC('\n');
     FREE(title);
     END(HTML_HEAD);
-    PUTS("\n");
+    PUTC('\n');
     START(HTML_BODY);
-    PUTS("\n");
+    PUTC('\n');
     HTUnEscape(header);
     START(HTML_H1);
     PUTS(header);
     END(HTML_H1);
-    PUTS("\n");
+    PUTC('\n');
     if (HTDirReadme == HT_DIR_README_TOP) {
         FILE * fp;
 	if (header[strlen(header)-1] != '/')
@@ -1018,7 +1018,7 @@ PUBLIC int HTVMSBrowseDir ARGS4(
 	PUTS(parent);
 	END(HTML_A);
 	START(HTML_P);
-	PUTS("\n");
+	PUTC('\n');
 	FREE(relative);
 	FREE(parent);
     }
@@ -1233,11 +1233,11 @@ PUBLIC int HTVMSBrowseDir ARGS4(
      *  Complete the output stream.
      */
     END(HTML_PRE);
-    PUTS("\n");
+    PUTC('\n');
     END(HTML_BODY);
-    PUTS("\n");
+    PUTC('\n');
     END(HTML_HTML);
-    PUTS("\n");
+    PUTC('\n');
     FREE(tail);
     FREE_TARGET;
 
84cbc24590d5394d75891cc1cfcc'>fd91f7f6 ^
33352536 ^
bc20cc3d ^
fd91f7f6 ^
bc20cc3d ^
33352536 ^
fd91f7f6 ^


bc20cc3d ^
fd91f7f6 ^


7a583220 ^
33352536 ^

bc20cc3d ^

fd91f7f6 ^
7a583220 ^
33352536 ^

fd91f7f6 ^

bc20cc3d ^
fd91f7f6 ^
bc20cc3d ^
fd91f7f6 ^


686a52bd ^
fd91f7f6 ^
686a52bd ^
fd91f7f6 ^

















bc20cc3d ^
33352536 ^
fd91f7f6 ^
bc20cc3d ^
fd91f7f6 ^

bc20cc3d ^
fd91f7f6 ^
bc20cc3d ^
fd91f7f6 ^


bc20cc3d ^
fd91f7f6 ^
bc20cc3d ^
fd91f7f6 ^
bc20cc3d ^
fd91f7f6 ^

bc20cc3d ^
fd91f7f6 ^


bc20cc3d ^
fd91f7f6 ^
bc20cc3d ^
33352536 ^
7a583220 ^
33352536 ^

bc20cc3d ^
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114