diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-11-13 03:37:01 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-11-13 03:37:01 +0000 |
commit | 2db96e3047400be594e7c5ebf7d6fcedb77f6907 (patch) | |
tree | 4a3c3d2e2062b9aaf86d7b6ef9b827b60a6189ac /source3/ubiqx | |
parent | 2164685b9f959814af2067aa0dcac2d1b2ac0bc5 (diff) | |
download | samba-2db96e3047400be594e7c5ebf7d6fcedb77f6907.tar.gz samba-2db96e3047400be594e7c5ebf7d6fcedb77f6907.tar.xz samba-2db96e3047400be594e7c5ebf7d6fcedb77f6907.zip |
fixes for OSF1 compilation
(This used to be commit 5be3c37f50eac35cad3eadf0d24e7a4ee04c075e)
Diffstat (limited to 'source3/ubiqx')
-rw-r--r-- | source3/ubiqx/debugparse.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/ubiqx/debugparse.c b/source3/ubiqx/debugparse.c index dff8197a8ad..5da5280f19e 100644 --- a/source3/ubiqx/debugparse.c +++ b/source3/ubiqx/debugparse.c @@ -34,12 +34,12 @@ /* -------------------------------------------------------------------------- ** * Constants... * - * BSIZE - This internal constant is used only by dbg_test(). It is the + * DBG_BSIZE - This internal constant is used only by dbg_test(). It is the * size of the read buffer. I've tested the function using a - * BSIZE value of 2. + * DBG_BSIZE value of 2. */ -#define BSIZE 128 +#define DBG_BSIZE 128 /* -------------------------------------------------------------------------- ** * Functions... @@ -258,14 +258,14 @@ void dbg_test( void ) * ------------------------------------------------------------------------ ** */ { - char bufr[BSIZE]; + char bufr[DBG_BSIZE]; int i; int linecount = 1; dbg_Token old = dbg_null, new = dbg_null, state = dbg_null; - while( fgets( bufr, BSIZE, stdin ) ) + while( fgets( bufr, DBG_BSIZE, stdin ) ) { for( i = 0; bufr[i]; i++ ) { |