]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- dtucker@cvs.openbsd.org 2014/01/17 06:23:24
authorDarren Tucker <dtucker@zip.com.au>
Sun, 19 Jan 2014 04:25:34 +0000 (15:25 +1100)
committerDarren Tucker <dtucker@zip.com.au>
Sun, 19 Jan 2014 04:25:34 +0000 (15:25 +1100)
     [sftp-server.c]
     fix log message statvfs.  ok djm

ChangeLog
sftp-server.c

index 5d9b9d10e88f68ed3a15149ccc143cb6d07a9697..f6167009700173436ddbda5f1543b4d6499a0069 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+20140119
+ - (dtucker) OpenBSD CVS Sync
+   - dtucker@cvs.openbsd.org 2014/01/17 06:23:24
+     [sftp-server.c]
+     fix log message statvfs.  ok djm
+
 20140118
  - (dtucker) [uidswap.c] Prevent unused variable warnings on Cygwin.  Patch
    from vinschen at redhat.com
index ad158f8e2fd390e00beac80816ac859c67c8c411..b8eb59c36a20796ea2b00e1ac81de84854e23a1f 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: sftp-server.c,v 1.102 2013/10/17 00:30:13 djm Exp $ */
+/* $OpenBSD: sftp-server.c,v 1.103 2014/01/17 06:23:24 dtucker Exp $ */
 /*
  * Copyright (c) 2000-2004 Markus Friedl.  All rights reserved.
  *
@@ -1256,8 +1256,8 @@ process_extended_statvfs(u_int32_t id)
        struct statvfs st;
 
        path = get_string(NULL);
-       debug3("request %u: statfs", id);
-       logit("statfs \"%s\"", path);
+       debug3("request %u: statvfs", id);
+       logit("statvfs \"%s\"", path);
 
        if (statvfs(path, &st) != 0)
                send_status(id, errno_to_portable(errno));