summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstevesk <stevesk@openbsd.org>2001-02-08 17:57:59 +0000
committerstevesk <stevesk@openbsd.org>2001-02-08 17:57:59 +0000
commit944e51a4f2695cb38d035b38fc91981bd0c790fc (patch)
tree3377d378e1b83670e95d8cb234dc580b7f77f8e2
parentUse <scsi/scsi_message.h> defines rather than homegrown ones. (diff)
downloadwireguard-openbsd-944e51a4f2695cb38d035b38fc91981bd0c790fc.tar.xz
wireguard-openbsd-944e51a4f2695cb38d035b38fc91981bd0c790fc.zip
typo
-rw-r--r--usr.bin/ssh/sftp-int.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sftp-int.c b/usr.bin/ssh/sftp-int.c
index de48f5f1990..b8c11f71777 100644
--- a/usr.bin/ssh/sftp-int.c
+++ b/usr.bin/ssh/sftp-int.c
@@ -28,7 +28,7 @@
/* XXX: recursive operations */
#include "includes.h"
-RCSID("$OpenBSD: sftp-int.c,v 1.16 2001/02/08 15:02:01 deraadt Exp $");
+RCSID("$OpenBSD: sftp-int.c,v 1.17 2001/02/08 17:57:59 stevesk Exp $");
#include "buffer.h"
#include "xmalloc.h"
@@ -519,7 +519,7 @@ parse_dispatch_command(int in, int out, const char *cmd, char **pwd)
break;
case I_LMKDIR:
if (mkdir(path1, 0777) == -1)
- error("Couldn't create local directory to "
+ error("Couldn't create local directory "
"\"%s\": %s", path1, strerror(errno));
break;
case I_LLS: