Missed one debug printf of name_hash. Ensure always use %x.
authorJeremy Allison <jra@samba.org>
Tue, 25 Jan 2011 22:59:44 +0000 (14:59 -0800)
committerJeremy Allison <jra@samba.org>
Tue, 25 Jan 2011 23:46:27 +0000 (00:46 +0100)
Autobuild-User: Jeremy Allison <jra@samba.org>
Autobuild-Date: Wed Jan 26 00:46:28 CET 2011 on sn-devel-104

source3/locking/locking.c

index f98208fbad2cc978577a7719b5e25652c5a8f587..1942f440195fcf0877505cab2c7af05bc8d15015 100644 (file)
@@ -1600,11 +1600,11 @@ const UNIX_USER_TOKEN *get_delete_on_close_token(struct share_mode_lock *lck, ui
 {
        struct delete_token_list *dtl;
 
-       DEBUG(10,("get_delete_on_close_token: name_hash = %u\n",
+       DEBUG(10,("get_delete_on_close_token: name_hash = 0x%x\n",
                        (unsigned int)name_hash ));
 
        for (dtl = lck->delete_tokens; dtl; dtl = dtl->next) {
-               DEBUG(10,("get_delete_on_close_token: dtl->name_hash = %u\n",
+               DEBUG(10,("get_delete_on_close_token: dtl->name_hash = 0x%x\n",
                                (unsigned int)dtl->name_hash ));
                if (dtl->name_hash == name_hash) {
                        return dtl->delete_token;