blob: 7767781e3c04ba778e2ff8992143c888cc406c4c (
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
|
# $NetBSD: patch-bm,v 1.1 2002/08/20 17:47:44 wennmach Exp $
On NetBSD, comment out call to setgetprogname().
--- appl/afsutils/klog.c.orig Tue Aug 20 18:07:46 2002
+++ appl/afsutils/klog.c Tue Aug 20 18:09:32 2002
@@ -498,9 +498,19 @@
char pwbuf[PASSWD_MAX];
+/*
+ * The setprogname(3) function was introduced in NetBSD 1.6.
+ * It is a function provided for compatibility, and in NetBSD,
+ * calling setprogname() from main() has no effect.
+ * In order to for this to work on older NetBSD systems,
+ * we just comment the call to setprogname() out.
+ */
+#if !defined(__NetBSD__)
setprogname (argv[0]);
-
method = log_open (getprogname(), "/dev/stderr:notime");
+#else
+ method = log_open ("klog", "/dev/stderr:notime");
+#endif
if (method == NULL)
errx (1, "log_open failed");
cell_init(0, method);
|