protocol: Don't use rename as a variable name

That causes shadowing errors on older compilers.

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
This commit is contained in:
Martin Kletzander 2015-08-15 16:44:38 +02:00
parent 0181975689
commit e4c8b67024
2 changed files with 2 additions and 2 deletions

View File

@ -3237,7 +3237,7 @@ struct remote_domain_rename_args {
}; };
struct remote_domain_rename_ret { struct remote_domain_rename_ret {
int rename; int retcode;
}; };
/*----- Protocol. -----*/ /*----- Protocol. -----*/

View File

@ -2690,7 +2690,7 @@ struct remote_domain_rename_args {
u_int flags; u_int flags;
}; };
struct remote_domain_rename_ret { struct remote_domain_rename_ret {
int rename; int retcode;
}; };
enum remote_procedure { enum remote_procedure {
REMOTE_PROC_CONNECT_OPEN = 1, REMOTE_PROC_CONNECT_OPEN = 1,