The branch, v3-2-test has been updated
       via  3fdf541b282805bc59ade8eb9a66c216f035f714 (commit)
      from  b0031a6e86565857e602f8011e57e2114835581a (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-test


- Log -----------------------------------------------------------------
commit 3fdf541b282805bc59ade8eb9a66c216f035f714
Author: Günther Deschner <[EMAIL PROTECTED]>
Date:   Tue Jul 15 23:05:13 2008 +0200

    fix build warning.
    
    Guenther
    (This used to be commit 507660706901a79544d436046127947e4baa7e52)
    (cherry picked from commit 1939177582867fb54a416f3ea979ebd8d4335885)

-----------------------------------------------------------------------

Summary of changes:
 source/libsmb/clirap2.c |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/libsmb/clirap2.c b/source/libsmb/clirap2.c
index 9cc8110..a15fa5f 100644
--- a/source/libsmb/clirap2.c
+++ b/source/libsmb/clirap2.c
@@ -1856,6 +1856,7 @@ bool cli_NetWkstaUserLogoff(struct cli_state *cli, const 
char *user, const char
                        +WORDSIZE];                         /* buffer size?  */
        char upperbuf[MAX(RAP_USERNAME_LEN,RAP_MACHNAME_LEN)];
        int res = -1;
+       char *tmp = NULL;
 
        memset(param, 0, sizeof(param));
 
@@ -1866,11 +1867,13 @@ bool cli_NetWkstaUserLogoff(struct cli_state *cli, 
const char *user, const char
        PUTDWORD(p, 0); /* Null pointer */
        strlcpy(upperbuf, user, sizeof(upperbuf));
        strupper_m(upperbuf);
-       PUTSTRINGF(p, upperbuf, RAP_USERNAME_LEN);
+       tmp = upperbuf;
+       PUTSTRINGF(p, tmp, RAP_USERNAME_LEN);
        p++; /* strange format, but ok */
        strlcpy(upperbuf, workstation, sizeof(upperbuf));
        strupper_m(upperbuf);
-       PUTSTRINGF(p, upperbuf, RAP_MACHNAME_LEN);
+       tmp = upperbuf;
+       PUTSTRINGF(p, tmp, RAP_MACHNAME_LEN);
        PUTWORD(p, CLI_BUFFER_SIZE);
        PUTWORD(p, CLI_BUFFER_SIZE);
 


-- 
Samba Shared Repository

Reply via email to