From 14a67060391db4ca869780a434292d7d1217d08d Mon Sep 17 00:00:00 2001 From: Olga Kornievskaia Date: Thu, 25 Aug 2011 15:06:48 -0400 Subject: [PATCH] [cosmetic] formatting changes to nfs41_superblock.c --- daemon/nfs41_superblock.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/daemon/nfs41_superblock.c b/daemon/nfs41_superblock.c index 7680e9b..ee8130f 100644 --- a/daemon/nfs41_superblock.c +++ b/daemon/nfs41_superblock.c @@ -98,9 +98,8 @@ static int get_superblock_attrs( status = nfs41_getattr(session, file, &attr_request, &info); if (status) { - eprintf("nfs41_getattr() failed with %s when " - "fetching attributes for fsid(%llu,%llu)\n", - nfs_error_string(status), + eprintf("nfs41_getattr() failed with %s when fetching attributes for " + "fsid(%llu,%llu)\n", nfs_error_string(status), superblock->fsid.major, superblock->fsid.minor); goto out; } @@ -203,7 +202,7 @@ int nfs41_superblock_for_fh( /* compare with the parent's fsid, and use that if it matches */ if (parent && parent->superblock && - compare_fsid(fsid, &parent->superblock->fsid) == 0) { + compare_fsid(fsid, &parent->superblock->fsid) == 0) { file->fh.superblock = parent->superblock; dprintf(SBLVL, "using superblock from parent\n"); goto out;