summaryrefslogtreecommitdiff
path: root/pullreqd.c
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-06-04 11:15:42 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-06-04 11:15:42 -0400
commit496ed94812366c9e31b242b4e01c1d7b19f9b758 (patch)
tree9c2fe727ab37dab7f8cd613e8da317fc58dcf995 /pullreqd.c
parent3c1692b86a570ab0888a33224aee3c7f1f9b02b7 (diff)
Fixed a typo with the `init_daemon()` call in
`main()`.
Diffstat (limited to 'pullreqd.c')
-rw-r--r--pullreqd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pullreqd.c b/pullreqd.c
index 6cfd46b..8be5122 100644
--- a/pullreqd.c
+++ b/pullreqd.c
@@ -64,7 +64,7 @@ void init_daemon(int change_dir, char *path) {
}
int main(int argc, char **argv) {
- init_daemon();
+ init_daemon(1, "/");
syslog(LOG_NOTICE, "pullreqd started.");
for (;;) {
break;