diff options
author | Damien Miller <djm@mindrot.org> | 2009-02-21 22:47:02 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2009-02-21 22:47:02 +0100 |
commit | 9eab9564d5185b52f33f4a265914d32a3147338e (patch) | |
tree | 86145fce64db1121ce8920426693f472c8f7d373 /sftp-server-main.c | |
parent | - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec] (diff) | |
download | openssh-9eab9564d5185b52f33f4a265914d32a3147338e.tar.xz openssh-9eab9564d5185b52f33f4a265914d32a3147338e.zip |
- (djm) OpenBSD CVS Sync
- tobias@cvs.openbsd.org 2009/02/21 19:32:04
[misc.c sftp-server-main.c ssh-keygen.c]
Added missing newlines in error messages.
ok dtucker
Diffstat (limited to 'sftp-server-main.c')
-rw-r--r-- | sftp-server-main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sftp-server-main.c b/sftp-server-main.c index 2b14569e4..7e644ab89 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; } |