commit 0a3c07f

uint  ·  2026-01-31 15:20:54 +0000 UTC
parent 7cdd3af
fix build error users.c

idk why i removed it?

.
2 files changed,  +7, -6
+6, -6
 1@@ -36,9 +36,9 @@ install: all
 2 	mkdir -p $(DESTDIR)$(MAN5DIR)
 3 	mkdir -p $(DESTDIR)$(MAN7DIR)
 4 
 5-	cp man/parados.1 $(DESTDIR)$(MAN1)/parados.1
 6-	cp man/parados.conf.5 $(DESTDIR)$(MAN5)/parados.conf.5
 7-	cp man/parados.7 $(DESTDIR)$(MAN7)/parados.7
 8+	cp docs/parados.1 $(DESTDIR)$(MAN1DIR)/parados.1
 9+	cp docs/parados.conf.5 $(DESTDIR)$(MAN5DIR)/parados.conf.5
10+	cp docs/parados.7 $(DESTDIR)$(MAN7DIR)/parados.7
11 
12 	chmod 644 $(DESTDIR)$(MAN1DIR)/parados.1
13 	chmod 644 $(DESTDIR)$(MAN5DIR)/parados.conf.5
14@@ -51,9 +51,9 @@ install-conf:
15 
16 uninstall:
17 	rm -f $(DESTDIR)$(BINDIR)/$(OUT)
18-	rm -f $(DESTDIR)$(MAN1)/parados.1
19-	rm -f $(DESTDIR)$(MAN5)/parados.conf.5
20-	rm -f $(DESTDIR)$(MAN7)/parados.7
21+	rm -f $(DESTDIR)$(MAN1DIR)/parados.1
22+	rm -f $(DESTDIR)$(MAN5DIR)/parados.conf.5
23+	rm -f $(DESTDIR)$(MAN7DIR)/parados.7
24 
25 compile_flags:
26 	rm -f compile_flags.txt
+1, -0
1@@ -2,6 +2,7 @@
2 #include <string.h>
3 #include <strings.h>
4 
5+#include "config.h"
6 #include "log.h"
7 #include "users.h"
8 #include "util.h"