summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Howard <lukeh@padl.com>2009-10-06 14:12:57 +0000
committerLuke Howard <lukeh@padl.com>2009-10-06 14:12:57 +0000
commita8372b7e16d9083f5cb8cc846aee0da1f344ece0 (patch)
tree94ce98ed39280d1cdace821697223a516ae003b3
parent2a07287466cc08d61e70b7445ccd420d2db6cac4 (diff)
downloadkrb5-lhoward/lockout.tar.gz
fix some indentation issueslhoward/lockout
git-svn-id: svn://anonsvn.mit.edu/krb5/users/lhoward/lockout@22852 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r--src/slave/kpropd.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/slave/kpropd.c b/src/slave/kpropd.c
index 77b9b1da2..c9841e2f8 100644
--- a/src/slave/kpropd.c
+++ b/src/slave/kpropd.c
@@ -593,23 +593,23 @@ static struct timeval full_resync_timeout = { 25, 0 };
static kdb_fullresync_result_t *
full_resync(CLIENT *clnt)
{
- static kdb_fullresync_result_t clnt_res;
+ static kdb_fullresync_result_t clnt_res;
uint32_t vers = IPROPX_VERSION_1; /* max version we support */
- enum clnt_stat status;
+ enum clnt_stat status;
- memset(&clnt_res, 0, sizeof(clnt_res));
+ memset(&clnt_res, 0, sizeof(clnt_res));
- status = clnt_call (clnt, IPROP_FULL_RESYNC_EXT,
- (xdrproc_t) xdr_u_int32,
+ status = clnt_call (clnt, IPROP_FULL_RESYNC_EXT,
+ (xdrproc_t) xdr_u_int32,
(caddr_t) &vers,
- (xdrproc_t) xdr_kdb_fullresync_result_t,
+ (xdrproc_t) xdr_kdb_fullresync_result_t,
(caddr_t) &clnt_res,
full_resync_timeout);
if (status == RPC_PROCUNAVAIL) {
status = clnt_call (clnt, IPROP_FULL_RESYNC,
(xdrproc_t) xdr_void,
(caddr_t *)&vers,
- (xdrproc_t) xdr_kdb_fullresync_result_t,
+ (xdrproc_t) xdr_kdb_fullresync_result_t,
(caddr_t) &clnt_res,
full_resync_timeout);
}