summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/include/client.h1
-rw-r--r--source3/libsmb/clirap.c3
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/client.h b/source3/include/client.h
index 15fc168cbb..90ba30c7dd 100644
--- a/source3/include/client.h
+++ b/source3/include/client.h
@@ -76,7 +76,6 @@ struct cli_state {
int rap_error;
int privileges;
- fstring eff_name;
fstring desthost;
fstring user_name;
fstring domain;
diff --git a/source3/libsmb/clirap.c b/source3/libsmb/clirap.c
index 3eb9586a67..2064e14954 100644
--- a/source3/libsmb/clirap.c
+++ b/source3/libsmb/clirap.c
@@ -117,7 +117,8 @@ BOOL cli_NetWkstaUserLogon(struct cli_state *cli,char *user, char *workstation)
if (cli->rap_error == 0) {
DEBUG(4,("NetWkstaUserLogon success\n"));
cli->privileges = SVAL(p, 24);
- fstrcpy(cli->eff_name,p+2);
+ /* The cli->eff_name field used to be set here
+ but it wasn't used anywhere else. */
} else {
DEBUG(1,("NetwkstaUserLogon gave error %d\n", cli->rap_error));
}