1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
$NetBSD: patch-af,v 1.2 2005/12/14 13:53:24 joerg Exp $
--- icb/oset.c.orig 1995-02-24 21:20:24.000000000 +0000
+++ icb/oset.c
@@ -39,6 +39,7 @@ VARIABLE vars[] = {
{ "pagesize", V_INT, (char *)&gv.pagesize },
{ "pauseonshell", V_BOOLEAN, (char *)&gv.pauseonshell },
{ "personalto", V_STRING, (char *)&gv.personalto },
+ { "printtime", V_BOOLEAN, (char *)&gv.printtime },
{ "restricted", V_BOOLEAN, (char *)&gv.restricted },
{ "tabreply", V_BOOLEAN, (char *)&gv.tabreply },
{ "timedisplay", V_STRING, (char *)&gv.timedisplay },
@@ -140,7 +141,7 @@ char *s;
{
int zero = 0, one = 1;
int tmp;
- char *p, *malloc();
+ char *p;
switch(type) {
case V_CHAR:
|