diff options
author | Jeremy Allison <jra@samba.org> | 2002-11-07 02:15:35 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-11-07 02:15:35 +0000 |
commit | 93042487882d8b2407541ad21d2e9bc2b59142e5 (patch) | |
tree | 9c71fc306cbf8088c23c04c3d0bf46182b32637d /source3/rpcclient | |
parent | 3955716f90c317684093b43065c73167382137d4 (diff) | |
download | samba-93042487882d8b2407541ad21d2e9bc2b59142e5.tar.gz samba-93042487882d8b2407541ad21d2e9bc2b59142e5.tar.xz samba-93042487882d8b2407541ad21d2e9bc2b59142e5.zip |
Merge of scalable printing code fix... Needs testing.
Jeremy.
(This used to be commit d030df76439c72825d68410211e62090438cef54)
Diffstat (limited to 'source3/rpcclient')
-rw-r--r-- | source3/rpcclient/display_sec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpcclient/display_sec.c b/source3/rpcclient/display_sec.c index 37043c50126..2a93c915f1a 100644 --- a/source3/rpcclient/display_sec.c +++ b/source3/rpcclient/display_sec.c @@ -54,7 +54,7 @@ char *get_sec_mask_str(uint32 type) if (type & DELETE_ACCESS) fstrcat(typestr, "DELETE_ACCESS "); - printf("\t\tSpecific bits: 0x%lx\n", type&SPECIFIC_RIGHTS_MASK); + printf("\t\tSpecific bits: 0x%lx\n", (unsigned long)type&SPECIFIC_RIGHTS_MASK); return typestr; } |