8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 06:43:04 +01:00
This commit is contained in:
robocop 2005-04-18 03:24:34 +00:00
parent 4c4b42c7c0
commit d0115322ac
3 changed files with 6 additions and 6 deletions

View File

@ -1988,7 +1988,7 @@ static gbak_action open_files(const TEXT* file1,
BURP_error(14, true, *file2, 0, 0, 0, 0); BURP_error(14, true, *file2, 0, 0, 0, 0);
// msg 14 database %s already exists. To replace it, use the -R switch // msg 14 database %s already exists. To replace it, use the -R switch
} }
else { else {
isc_drop_database(status_vector, &tdgbl->db_handle); isc_drop_database(status_vector, &tdgbl->db_handle);
if (tdgbl->db_handle) { if (tdgbl->db_handle) {
ISC_STATUS_ARRAY status_vector2; ISC_STATUS_ARRAY status_vector2;
@ -2093,7 +2093,7 @@ static void burp_usage()
BURP_print(95, 0, 0, 0, 0, 0); BURP_print(95, 0, 0, 0, 0, 0);
// msg 95 legal switches are // msg 95 legal switches are
in_sw_tab_t* in_sw_tab = burp_in_sw_table; const in_sw_tab_t* in_sw_tab = burp_in_sw_table;
for (; in_sw_tab->in_sw; in_sw_tab++) for (; in_sw_tab->in_sw; in_sw_tab++)
if (in_sw_tab->in_sw_msg) { if (in_sw_tab->in_sw_msg) {
BURP_msg_put(in_sw_tab->in_sw_msg, (void*)switch_char, 0, 0, BURP_msg_put(in_sw_tab->in_sw_msg, (void*)switch_char, 0, 0,

View File

@ -4763,7 +4763,7 @@ int LexerState::yylex (
tok_class = classes[c]; tok_class = classes[c];
if (!(tok_class & CHR_WHITE)) if (!(tok_class & CHR_WHITE))
break; break;
} }
/* Depending on tok_class of token, parse token */ /* Depending on tok_class of token, parse token */

View File

@ -117,10 +117,10 @@ const char* FIREBIRD_USER_NAME = "firebird";
#ifdef VMS #ifdef VMS
static int assign(SCHAR *); static int assign(SCHAR *);
#endif #else
//static void name_process(UCHAR *);
static void signal_handler(int);
static void set_signal(int, void (*)(int)); static void set_signal(int, void (*)(int));
#endif
static void signal_handler(int);
#if (defined SUPERSERVER && defined UNIX ) #if (defined SUPERSERVER && defined UNIX )
static void signal_sigpipe_handler(int); static void signal_sigpipe_handler(int);