8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 04:43:03 +01:00
This commit is contained in:
asfernandes 2007-09-12 02:31:28 +00:00
parent 5ee7b35d73
commit 4dd7b4c668
3 changed files with 6 additions and 6 deletions

View File

@ -23,7 +23,7 @@ useful to system administrators, and to other programs calling the Setup
program.
/SP-
Disables the This will install... Do you wish to continue? prompt
Disables the "This will install... Do you wish to continue?" prompt
at the beginning of Setup. Of course, this will have no effect if the
DisableStartupPrompt [Setup] section directive was set to yes.
@ -37,7 +37,7 @@ program.
'/SP-' command line option explained above).
If a restart is necessary and the '/NORESTART' command isn't used (see
below) and Setup is silent, it will display a Reboot now? message box.
below) and Setup is silent, it will display a "Reboot now?" message box.
If it's very silent it will reboot without asking.
/SUPPRESSMSGBOXES

View File

@ -496,7 +496,7 @@ bool SHOW_dbb_parameters(FB_API_HANDLE db_handle,
sprintf(info, "ODS = %"SLONGFORMAT".%"SLONGFORMAT"%s",
(SLONG) isqlGlob.major_ods, value_out, NEWLINE);
break;
#ifdef DEV_BUILD
case isc_info_db_id:
{
@ -521,7 +521,7 @@ bool SHOW_dbb_parameters(FB_API_HANDLE db_handle,
case isc_info_truncated:
return info > info_buf; // If we got some items, we are (partially) successful.
}
d += length;
info += strlen(info);
}

View File

@ -137,7 +137,7 @@ static SSHORT convert( ULONG number, UCHAR * buffer)
const UCHAR *p;
#ifndef WORDS_BIGENDIAN
p = (UCHAR *) & number;
p = (UCHAR *) &number;
*buffer++ = *p++;
*buffer++ = *p++;
*buffer++ = *p++;
@ -145,7 +145,7 @@ static SSHORT convert( ULONG number, UCHAR * buffer)
#else
p = (UCHAR *) & number;
p = (UCHAR *) &number;
p += 3;
*buffer++ = *p--;
*buffer++ = *p--;