diff options
author | lenz@mysql.com <> | 2003-08-28 01:35:58 +0200 |
---|---|---|
committer | lenz@mysql.com <> | 2003-08-28 01:35:58 +0200 |
commit | 56fc96dd4656d22df5b11adc82423ec4f4fc4b0a (patch) | |
tree | e4ea5bc5e231b21e20fa6672059e6f581f0eeb8a /fs | |
parent | 20a1226ca63e3de563e1c422b6294879e140c5d4 (diff) | |
download | mariadb-git-56fc96dd4656d22df5b11adc82423ec4f4fc4b0a.tar.gz |
- replaced C++-style comments in .c file (Please try to avoid this, as
it breaks compilation on picky C compilers!)
Diffstat (limited to 'fs')
-rw-r--r-- | fs/database.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/database.c b/fs/database.c index 0ff12e433ee..462e61760e9 100644 --- a/fs/database.c +++ b/fs/database.c @@ -118,7 +118,7 @@ void db_show_result(MYSQL* sock, char *b, struct format *f) count=mysql_num_fields(result); -// while ((field = mysql_fetch_field(result))) +/* while ((field = mysql_fetch_field(result))) */ for(i=0 ; i < count ; ++i) { field = mysql_fetch_field(result); @@ -127,7 +127,7 @@ void db_show_result(MYSQL* sock, char *b, struct format *f) length=max(length,field->max_length); if (length < 4 && !IS_NOT_NULL(field->flags)) - length=4; // Room for "NULL" + length=4; /* Room for "NULL" */ field->max_length=length; memset(topptr,'=',field->max_length); @@ -135,7 +135,7 @@ void db_show_result(MYSQL* sock, char *b, struct format *f) memset(botptr,'=',field->max_length); sprintf(hdrptr,"%-*s",field->max_length,field->name); - //num_flag[off]= IS_NUM(field->type); + /* num_flag[off]= IS_NUM(field->type); */ topptr+=field->max_length; midptr+=field->max_length; @@ -341,10 +341,10 @@ int db_show_primary_keys(char *b,const char *database, const char *table) } buff2[strlen(buff2)-5]='\0'; if(!buff2[0]) - DBUG_RETURN(-1); // No PRIMARY keys in table + DBUG_RETURN(-1); /* No PRIMARY keys in table */ DBUG_PRINT("info",("Keys: %s<- \n", buff2)); } else - DBUG_RETURN(-1); // No keys in table + DBUG_RETURN(-1); /* No keys in table */ sprintf(buff,"SELECT CONCAT(%s) AS X FROM %s LIMIT 256",buff2,table); if (mysql_query(sock, buff)) @@ -441,7 +441,7 @@ db_show_servers(char *b,int size) DBUG_ENTER("db_show_servers"); DBUG_PRINT("enter",("buffer: '%s', size: '%d'", b, size)); bufptr=mysql_get_host_info(sock); - // FIXME: Actually we need to escape prohibited symbols in filenames + /* FIXME: Actually we need to escape prohibited symbols in filenames */ fix_filenames(bufptr); strcpy(b,bufptr); DBUG_RETURN(1); |