summaryrefslogtreecommitdiff
path: root/net/cap/files/patch-lib-cap-ablog.c
blob: c3baa70fe94ae090e21b38f128cbe6ec20dadc7a (plain) (blame)
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
--- lib/cap/ablog.c.orig	Sat Aug 30 18:19:18 2003
+++ lib/cap/ablog.c	Sat Aug 30 18:25:05 2003
@@ -24,13 +24,14 @@
  *
 */
 
+#include <osreldate.h>
 #include <stdio.h>
 #include <sys/types.h>
 #include <sys/time.h>
 #include <netat/appletalk.h>
 
 #ifdef USEVPRINTF
-# include <varargs.h>
+# include <stdarg.h>
 #endif USEVPRINTF
 #ifdef USETIMES
 # include <time.h>
@@ -66,8 +67,13 @@
  * This is something all machine should, but don't have :-)
  */
 
+#if defined(__FreeBSD__) && __FreeBSD_version < 470000
 static FILE *lfp = stderr;
-
+#else
+static FILE *lfp;
+static void lfp_construct (void) __attribute__((constructor));
+static void lfp_construct (void) { lfp = stderr; }
+#endif
 
 #ifndef USEVPRINTF
 /* Bletch - gotta do it because pyramids don't work the other way */
@@ -79,19 +85,16 @@
 char *fmt;
 #else USEVPRINTF
 /*VARARGS*/
-logit(va_alist)
-va_dcl
+logit(int level, char *fmt, ...)
 #endif USEVPRINTF
 {
   static char *mytod();
 #ifdef USEVPRINTF
-  register char *fmt;
   va_list args;
-  int level;
 #endif USEVPRINTF
   int saveerr;
   extern int errno;
-  extern int sys_nerr;
+  extern __const int sys_nerr;
 #ifndef __FreeBSD__
   extern char *sys_errlist[];
 #endif
@@ -101,9 +104,7 @@
 
   saveerr = errno;
 #ifdef USEVPRINTF
-  va_start(args);
-  level = va_arg(args, int);
-  fmt = va_arg(args, char *);
+  va_start(args, fmt);
 #endif USEVPRINTF
 
   if (dlevel < (level & L_LVL))