summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-05-19 04:49:56 +0000
committerJeremy Allison <jra@samba.org>1998-05-19 04:49:56 +0000
commit643e16be620b920f72f59a037e0d0d4940016a29 (patch)
tree158804c4c4ae2087b45c63d473357d36b166f654 /source3/lib
parentd9e4b23674e4084b2fd88a5b2e3b0ffea752568a (diff)
downloadsamba-643e16be620b920f72f59a037e0d0d4940016a29.tar.gz
samba-643e16be620b920f72f59a037e0d0d4940016a29.tar.bz2
samba-643e16be620b920f72f59a037e0d0d4940016a29.zip
Fixed signed/unsigned warning.
Jeremy. (This used to be commit 6b6539cad8962f2913d892abae811afc72432678)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index 48492e5eb6..4c8133cabf 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -3736,7 +3736,7 @@ void reset_globals_after_fork(void)
* sequence.
*/
{
- char dummy;
+ unsigned char dummy;
generate_random_buffer( &dummy, 1, True);
}
}