aboutsummaryrefslogtreecommitdiff
path: root/sftp-server-main.c
diff options
context:
space:
mode:
Diffstat (limited to 'sftp-server-main.c')
-rw-r--r--sftp-server-main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sftp-server-main.c b/sftp-server-main.c
index 2b14569e4756..7e644ab8982b 100644
--- a/sftp-server-main.c
+++ b/sftp-server-main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sftp-server-main.c,v 1.3 2008/03/26 23:44:41 djm Exp $ */
+/* $OpenBSD: sftp-server-main.c,v 1.4 2009/02/21 19:32:04 tobias Exp $ */
/*
* Copyright (c) 2008 Markus Friedl. All rights reserved.
*
@@ -42,7 +42,8 @@ main(int argc, char **argv)
sanitise_stdfd();
if ((user_pw = getpwuid(getuid())) == NULL) {
- fprintf(stderr, "No user found for uid %lu", (u_long)getuid());
+ fprintf(stderr, "No user found for uid %lu\n",
+ (u_long)getuid());
return 1;
}