diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-14 01:59:36 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-14 01:59:36 +0200 |
commit | 4746f79d50d804b0e9d5d5cc0d4796dee54d052c (patch) | |
tree | c10c06cd3e9b10cc0a4ea964875b4cfa739a2e4c /source3/nmbd | |
parent | abe443a65edf86892ce01c80804a4b644ec99433 (diff) | |
download | samba-4746f79d50d804b0e9d5d5cc0d4796dee54d052c.tar.gz samba-4746f79d50d804b0e9d5d5cc0d4796dee54d052c.tar.bz2 samba-4746f79d50d804b0e9d5d5cc0d4796dee54d052c.zip |
Use {u,}int64_t instead of SMB_BIG_{U,}INT.
Diffstat (limited to 'source3/nmbd')
-rw-r--r-- | source3/nmbd/nmbd_winsserver.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/nmbd/nmbd_winsserver.c b/source3/nmbd/nmbd_winsserver.c index 96938b011a..5ee6e83138 100644 --- a/source3/nmbd/nmbd_winsserver.c +++ b/source3/nmbd/nmbd_winsserver.c @@ -124,7 +124,7 @@ static struct name_record *wins_record_to_name_record(TDB_DATA key, TDB_DATA dat namerec->data.refresh_time = (time_t)refresh_time; namerec->data.id = id_low; #if defined(HAVE_LONGLONG) - namerec->data.id |= ((SMB_BIG_UINT)id_high << 32); + namerec->data.id |= ((uint64_t)id_high << 32); #endif namerec->data.wins_ip.s_addr = saddr; namerec->data.wins_flags = wins_flags, @@ -412,14 +412,14 @@ static void update_wins_flag(struct name_record *namerec, int flags) Return the general ID value and increase it if requested. *****************************************************************************/ -static void get_global_id_and_update(SMB_BIG_UINT *current_id, bool update) +static void get_global_id_and_update(uint64_t *current_id, bool update) { /* * it's kept as a static here, to prevent people from messing * with the value directly */ - static SMB_BIG_UINT general_id = 1; + static uint64_t general_id = 1; DEBUG(5,("get_global_id_and_update: updating version ID: %d\n", (int)general_id)); |