Opened 11 years ago

Closed 11 years ago

#706 closed enhancement (fixed)

maximum number of media - is it useful ?

Reported by: victor gattegno Owned by: Bruno Cornec
Priority: normal Milestone: 3.0.4
Component: mondo Version: 3.0.3
Severity: normal Keywords:
Cc:

Description

There is a limitation in mondo source about the maximum number of media that can be used in any one backup.

In libmondo-archive.c

	if (g_current_media_number > MAX_NOOF_MEDIA) {
		fatal_error("Too many media. Use tape or net.");
	}

In mondostructures.h:

/** @def MAX_NOOF_MEDIA The maximum number of media that can be used in any one backup. */
///* So we can override it in config.h: */
//#ifndef MAX_NOOF_MEDIA
#define MAX_NOOF_MEDIA 50
//#endif

And in config.h:

/* Maximum number of media */
#undef MAX_NOOF_MEDIA

Through NFS for example I don't see why "the maximum number of media" should be limited.

Change History (1)

comment:1 by Bruno Cornec, 11 years ago

Resolution: fixed
Status: newclosed

Indeed no good reason to keep it now.

Fixed in rev [3150].

Note: See TracTickets for help on using tickets.