diff options
author | Richard Sharpe <sharpe@samba.org> | 2003-05-09 06:23:55 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@samba.org> | 2003-05-09 06:23:55 +0000 |
commit | f5dd6b27500855975aceccaa0f0478bfe7cccaaf (patch) | |
tree | 75b3bb9af672d829c3e6c3bd49ea623662e65f04 | |
parent | 917c2fcf6af3713525d4f4a4995309d952eeec5c (diff) | |
download | samba-f5dd6b27500855975aceccaa0f0478bfe7cccaaf.tar.gz samba-f5dd6b27500855975aceccaa0f0478bfe7cccaaf.tar.bz2 samba-f5dd6b27500855975aceccaa0f0478bfe7cccaaf.zip |
Sync to the changes in head ...
(This used to be commit 7f76eac5a0f93107d990b0fde651838c38970092)
-rw-r--r-- | source3/utils/editreg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/editreg.c b/source3/utils/editreg.c index ff48bc5bf0..08561dd868 100644 --- a/source3/utils/editreg.c +++ b/source3/utils/editreg.c @@ -341,7 +341,7 @@ Hope this helps.... (Although it was "fun" for me to uncover this things, #define SSVAL(buf, val) \ ((((unsigned char *)(buf))[0])=(unsigned char)((val)&0xFF),\ - (((unsigned char *)(buf))[1])=(unsigned char)(((val)>>8)&0xFF)) + (((unsigned char *)(buf))[1])=(unsigned char)((val)>>8)) static int verbose = 0; static int print_security = 0; |