info() about opening of stores

This commit is contained in:
Oswald Buddenhagen 2006-03-21 10:30:45 +00:00
parent b7389cb36f
commit 72a2d4b690
3 changed files with 10 additions and 5 deletions

View File

@ -246,6 +246,8 @@ unsigned char arc4_getbyte( void );
/* sync.c */
extern const char *str_ms[2], *str_hl[2];
#define SYNC_OK 0
#define SYNC_FAIL 1
#define SYNC_BAD(ms) (2+(ms))

View File

@ -481,17 +481,20 @@ main( int argc, char **argv )
merge_actions( chan, ops, XOP_HAVE_CREATE, OP_CREATE, 0 );
merge_actions( chan, ops, XOP_HAVE_EXPUNGE, OP_EXPUNGE, 0 );
info( "Channel %s\n", chan->name );
boxes[M] = boxes[S] = cboxes = 0;
for (t = 0; t < 2; t++) {
driver[t] = chan->stores[t]->driver;
ctx[t] = driver[t]->own_store( chan->stores[t] );
}
for (t = 0; t < 2; t++)
if (!ctx[t] && !(ctx[t] = driver[t]->open_store( chan->stores[t] ))) {
if (!ctx[t]) {
info( "Opening %s %s...\n", str_ms[t], chan->stores[t]->name );
if (!(ctx[t] = driver[t]->open_store( chan->stores[t] ))) {
ret = 1;
goto next;
}
info( "Channel %s\n", chan->name );
}
if (list && multiple)
printf( "%s:\n", chan->name );
if (boxlist) {

View File

@ -33,7 +33,7 @@
#include <errno.h>
#include <sys/stat.h>
static const char *str_ms[] = { "master", "slave" }, *str_hl[] = { "push", "pull" };
const char *str_ms[] = { "master", "slave" }, *str_hl[] = { "push", "pull" };
void
Fclose( FILE *f )