]> andersk Git - gssapi-openssh.git/blobdiff - openssh/sftp-common.c
The man2html from jbasney on pkilab2 works whereas the standard one doesn't.
[gssapi-openssh.git] / openssh / sftp-common.c
index 6bed0ab8a06d1f26c6af458df4e9a3b9885e3a7f..92350481133442e55d9ae831e054675fe4b16fbd 100644 (file)
@@ -24,7 +24,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: sftp-common.c,v 1.6 2002/06/23 09:30:14 deraadt Exp $");
+RCSID("$OpenBSD: sftp-common.c,v 1.4 2001/07/14 15:10:17 stevesk Exp $");
 
 #include "buffer.h"
 #include "bufaux.h"
@@ -70,7 +70,6 @@ Attrib *
 decode_attrib(Buffer *b)
 {
        static Attrib a;
-
        attrib_clear(&a);
        a.flags = buffer_get_int(b);
        if (a.flags & SSH2_FILEXFER_ATTR_SIZE)
@@ -89,7 +88,6 @@ decode_attrib(Buffer *b)
        if (a.flags & SSH2_FILEXFER_ATTR_EXTENDED) {
                char *type, *data;
                int i, count;
-
                count = buffer_get_int(b);
                for (i = 0; i < count; i++) {
                        type = buffer_get_string(b, NULL);
@@ -146,6 +144,6 @@ fx2txt(int status)
                return("Operation unsupported");
        default:
                return("Unknown status");
-       }
+       };
        /* NOTREACHED */
 }
This page took 0.033915 seconds and 4 git commands to generate.