blob: 7873e12461b2e8768de07330ca31149133c0a471 (
plain)
1 diff -Nru msntp-1.6.orig/Makefile msntp-1.6/Makefile
2 --- msntp-1.6.orig/Makefile 2002-09-08 13:16:22.000000000 +0200
3 +++ msntp-1.6/Makefile 2002-09-08 13:19:23.000000000 +0200
4 @@ -11,7 +11,7 @@
5 # CC = cc
6 # CFLAGS = -O
7 # LDFLAGS =
8 -# LIBS = -lm
9 +LIBS = -lm
10
11 # Compiling this sort of ANSI C under SunOS 4.1 is a mug's game, because Sun's
12 # Unix headers make GNU C vomit even in compatibility mode, but the following
13 diff -Nru msntp-1.6.orig/header.h msntp-1.6/header.h
14 --- msntp-1.6.orig/header.h 2002-09-08 13:16:22.000000000 +0200
15 +++ msntp-1.6/header.h 2002-09-08 13:27:13.000000000 +0200
16 @@ -19,10 +19,10 @@
17 #define MAX_SOCKETS 10 /* Maximum number of addresses */
18
19 #ifndef LOCKNAME
20 - #define LOCKNAME "/etc/msntp.pid" /* Stores the pid */
21 + #define LOCKNAME "/var/run/msntp.pid" /* Stores the pid */
22 #endif
23 #ifndef SAVENAME
24 - #define SAVENAME "/etc/msntp.state" /* Stores the recovery state */
25 + #define SAVENAME "/var/run/msntp.state" /* Stores the recovery state */
26 #endif
27
28
29 diff -Nru msntp-1.6.orig/msntp.1 msntp-1.6/msntp.1
30 --- msntp-1.6.orig/msntp.1 2002-09-08 13:16:22.000000000 +0200
31 +++ msntp-1.6/msntp.1 2002-09-08 13:27:59.000000000 +0200
32 @@ -143,7 +143,7 @@
33 one copy of
34 .I msntp
35 running at once. The default is installation-dependent, but will usually be
36 -.IR /etc/msntp.pid .
37 +.IR /var/run/msntp.pid .
38 .TP
39 .BI \-e " minerr"
40 sets the maximum ignorable variation between the clocks to
41 @@ -214,7 +214,7 @@
42 Note that the file will be created with the default ownerships and permissions,
43 using standard C facilities. The default is installation-dependent, but will
44 usually be
45 -.IR /etc/msntp.state .
46 +.IR /var/run/msntp.state .
47 .PP
48 .B address(es)
49 are the DNS names or IP numbers of hosts to use for the challenge and response
|