1
0
mirror of https://github.com/openbsd/src.git synced 2026-04-24 14:14:37 +00:00

unbreak build; typofix d{ea -> ae}mon; noticed by bluhm

This commit is contained in:
kn
2025-05-21 09:42:21 +00:00
parent fa0a14c87a
commit 2bdc12efdb

View File

@@ -1,4 +1,4 @@
/* $OpenBSD: ftp-proxy.c,v 1.40 2025/05/21 03:15:40 kn Exp $ */
/* $OpenBSD: ftp-proxy.c,v 1.41 2025/05/21 09:42:21 kn Exp $ */
/*
* Copyright (c) 2004, 2005 Camiel Dobbelaar, <cd@sentia.nl>
@@ -780,11 +780,11 @@ main(int argc, char *argv[])
if (unveil("/", "") == -1) {
syslog(LOG_ERR, "unveil /: %s", strerror(errno));
exit_deamon();
exit_daemon();
}
if (unveil(NULL, NULL) == -1) {
syslog(LOG_ERR, "unveil: %s", strerror(errno));
exit_deamon();
exit_daemon();
}
event_init();