diff options
author | Jeremy Allison <jra@samba.org> | 2006-02-03 23:31:56 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:06:24 -0500 |
commit | 2268658171038ab7d8a5f722c5d3f7b273191f1c (patch) | |
tree | 97dc93c2ce92a1f406a3fc522c9b714861b79178 /source3 | |
parent | 43526112a309a0d353be43c0379acb9d5b4c495c (diff) | |
download | samba-2268658171038ab7d8a5f722c5d3f7b273191f1c.tar.gz samba-2268658171038ab7d8a5f722c5d3f7b273191f1c.tar.bz2 samba-2268658171038ab7d8a5f722c5d3f7b273191f1c.zip |
r13322: Fix warning time_t != int.
Jeremy.
(This used to be commit 6196446a03abeb4100bac1721977488ae5843f42)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libsmb/namequery.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libsmb/namequery.c b/source3/libsmb/namequery.c index 0986e7f29a..1520e6cec2 100644 --- a/source3/libsmb/namequery.c +++ b/source3/libsmb/namequery.c @@ -67,8 +67,8 @@ BOOL saf_store( const char *domain, const char *servername ) expire = time( NULL ) + SAF_TTL; - DEBUG(10,("saf_store: domain = [%s], server = [%s], expire = [%d]\n", - domain, servername, expire )); + DEBUG(10,("saf_store: domain = [%s], server = [%s], expire = [%u]\n", + domain, servername, (unsigned int)expire )); ret = gencache_set( key, servername, expire ); |