secret: Whitespace modification for secret_driver

Ensure two empty lines between functions.

Signed-off-by: John Ferlan <jferlan@redhat.com>
This commit is contained in:
John Ferlan
2017-04-26 09:33:22 -04:00
parent 407a281a8e
commit 836c40be53

View File

@@ -72,6 +72,7 @@ secretDriverLock(void)
virMutexLock(&driver->lock);
}
static void
secretDriverUnlock(void)
{
@@ -79,7 +80,6 @@ secretDriverUnlock(void)
}
static virSecretObjPtr
secretObjFromSecret(virSecretPtr secret)
{
@@ -109,6 +109,7 @@ secretConnectNumOfSecrets(virConnectPtr conn)
conn);
}
static int
secretConnectListSecrets(virConnectPtr conn,
char **uuids,
@@ -279,6 +280,7 @@ secretDefineXML(virConnectPtr conn,
return ret;
}
static char *
secretGetXMLDesc(virSecretPtr secret,
unsigned int flags)
@@ -304,6 +306,7 @@ secretGetXMLDesc(virSecretPtr secret,
return ret;
}
static int
secretSetValue(virSecretPtr secret,
const unsigned char *value,
@@ -340,6 +343,7 @@ secretSetValue(virSecretPtr secret,
return ret;
}
static unsigned char *
secretGetValue(virSecretPtr secret,
size_t *value_size,
@@ -377,6 +381,7 @@ secretGetValue(virSecretPtr secret,
return ret;
}
static int
secretUndefine(virSecretPtr secret)
{
@@ -415,6 +420,7 @@ secretUndefine(virSecretPtr secret)
return ret;
}
static int
secretStateCleanup(void)
{
@@ -435,6 +441,7 @@ secretStateCleanup(void)
return 0;
}
static int
secretStateInitialize(bool privileged,
virStateInhibitCallback callback ATTRIBUTE_UNUSED,
@@ -486,6 +493,7 @@ secretStateInitialize(bool privileged,
return -1;
}
static int
secretStateReload(void)
{
@@ -500,6 +508,7 @@ secretStateReload(void)
return 0;
}
static int
secretConnectSecretEventRegisterAny(virConnectPtr conn,
virSecretPtr secret,
@@ -521,6 +530,7 @@ secretConnectSecretEventRegisterAny(virConnectPtr conn,
return callbackID;
}
static int
secretConnectSecretEventDeregisterAny(virConnectPtr conn,
int callbackID)
@@ -565,6 +575,7 @@ static virStateDriver stateDriver = {
.stateReload = secretStateReload,
};
int
secretRegister(void)
{