flexnbd: Normalise some variable declarations

This commit is contained in:
nick
2013-02-01 15:20:43 +00:00
parent 7583ffbc4d
commit 1afba29b63
2 changed files with 7 additions and 7 deletions

View File

@@ -82,7 +82,7 @@ struct flexnbd * flexnbd_create_serving(
char* s_ip_address,
char* s_port,
char* s_file,
char *s_ctrl_sock,
char* s_ctrl_sock,
int default_deny,
int acl_entries,
char** s_acl_entries,
@@ -109,7 +109,7 @@ struct flexnbd * flexnbd_create_listening(
char* s_ip_address,
char* s_port,
char* s_file,
char *s_ctrl_sock,
char* s_ctrl_sock,
int default_deny,
int acl_entries,
char** s_acl_entries )

View File

@@ -31,19 +31,19 @@ struct flexnbd * flexnbd_create_serving(
char* s_ip_address,
char* s_port,
char* s_file,
char *s_ctrl_sock,
char* s_ctrl_sock,
int default_deny,
int acl_entries,
char** s_acl_entries,
int max_nbd_clients);
struct flexnbd * flexnbd_create_listening(
char* s_ip_address,
char* s_port,
char* s_ip_address,
char* s_port,
char* s_file,
char *s_ctrl_sock,
char* s_ctrl_sock,
int default_deny,
int acl_entries,
int acl_entries,
char** s_acl_entries );
void flexnbd_destroy( struct flexnbd * );