diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-08-02 03:51:38 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-08-02 04:54:28 +0200 |
commit | c399ad4cdd313584fe072b84bfe87ec03182fb5c (patch) | |
tree | cbe23d9837e1d13ee3af1c44e47c9cf50ba609a2 | |
parent | 6e8a6e033f4040630995f0c2f1889fbc251cb7dc (diff) | |
download | samba-c399ad4cdd313584fe072b84bfe87ec03182fb5c.tar.gz samba-c399ad4cdd313584fe072b84bfe87ec03182fb5c.tar.bz2 samba-c399ad4cdd313584fe072b84bfe87ec03182fb5c.zip |
s3:include: change cli->protocol to enum protocol_types
metze
-rw-r--r-- | source3/include/client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index c4f011dfe7..a4d43218e6 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -51,7 +51,7 @@ struct cli_state { * A list of subsidiary connections for DFS. */ struct cli_state *prev, *next; - int protocol; + enum protocol_types protocol; int sec_mode; int rap_error; NTSTATUS raw_status; /* maybe via NT_STATUS_DOS() */ |