summaryrefslogtreecommitdiff
path: root/source/ubiqx
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-11-13 03:37:01 +0000
committerAndrew Tridgell <tridge@samba.org>1998-11-13 03:37:01 +0000
commit5be3c37f50eac35cad3eadf0d24e7a4ee04c075e (patch)
treebeefce5963570b2c661b573c099db1927dd13f5f /source/ubiqx
parentb62f008974c96e0302d6c146cf49bc2045bef005 (diff)
downloadsamba-5be3c37f50eac35cad3eadf0d24e7a4ee04c075e.tar.gz
fixes for OSF1 compilation
Diffstat (limited to 'source/ubiqx')
-rw-r--r--source/ubiqx/debugparse.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/ubiqx/debugparse.c b/source/ubiqx/debugparse.c
index dff8197a8ad..5da5280f19e 100644
--- a/source/ubiqx/debugparse.c
+++ b/source/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++ )
{