]> andersk Git - openssh.git/blobdiff - readconf.c
- deraadt@cvs.openbsd.org 2004/07/11 17:48:47
[openssh.git] / readconf.c
index 429f691292e733754ccf32bb95afac64f7d9dc7a..a4fe1fe028c49f081135f5753399a0e8ffcd2502 100644 (file)
@@ -12,7 +12,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: readconf.c,v 1.133 2004/06/17 15:10:14 djm Exp $");
+RCSID("$OpenBSD: readconf.c,v 1.134 2004/07/11 17:48:47 deraadt Exp $");
 
 #include "ssh.h"
 #include "xmalloc.h"
@@ -804,7 +804,7 @@ parse_int:
  */
 
 int
-read_config_file(const char *filename, const char *host, Options *options, 
+read_config_file(const char *filename, const char *host, Options *options,
     int checkperm)
 {
        FILE *f;
@@ -818,7 +818,7 @@ read_config_file(const char *filename, const char *host, Options *options,
 
        if (checkperm) {
                struct stat sb;
-               
+
                if (fstat(fileno(f), &sb) == -1)
                        fatal("fstat %s: %s", filename, strerror(errno));
                if (((sb.st_uid != 0 && sb.st_uid != getuid()) ||
This page took 0.086618 seconds and 4 git commands to generate.