summaryrefslogtreecommitdiff
path: root/libexec/tftpd/tftpd.c
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2004-04-17 19:45:45 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2004-04-17 19:45:45 +0000
commite5e5d02ba273712e7773039f5f298126f6492996 (patch)
treea8b5a726e0f5d8c11f1fc8b1af9044731985826e /libexec/tftpd/tftpd.c
parentf8f04ec243b75c06f7a74421f05b8e652c241ded (diff)
no no no nobody, _tftpd is better, theo ok
Diffstat (limited to 'libexec/tftpd/tftpd.c')
-rw-r--r--libexec/tftpd/tftpd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libexec/tftpd/tftpd.c b/libexec/tftpd/tftpd.c
index f235aa58748..b09695b7f9b 100644
--- a/libexec/tftpd/tftpd.c
+++ b/libexec/tftpd/tftpd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tftpd.c,v 1.32 2004/01/27 02:25:30 deraadt Exp $ */
+/* $OpenBSD: tftpd.c,v 1.33 2004/04/17 19:45:44 henning Exp $ */
/*
* Copyright (c) 1983 Regents of the University of California.
@@ -37,7 +37,7 @@ char copyright[] =
#ifndef lint
/*static char sccsid[] = "from: @(#)tftpd.c 5.13 (Berkeley) 2/26/91";*/
-static char rcsid[] = "$OpenBSD: tftpd.c,v 1.32 2004/01/27 02:25:30 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: tftpd.c,v 1.33 2004/04/17 19:45:44 henning Exp $";
#endif /* not lint */
/*
@@ -175,9 +175,9 @@ main(int argc, char *argv[])
ndirs++;
}
- pw = getpwnam("nobody");
+ pw = getpwnam("_tftpd");
if (!pw) {
- syslog(LOG_ERR, "no nobody: %m");
+ syslog(LOG_ERR, "no _tftpd: %m");
exit(1);
}