mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
Adjusted big endian warning
This commit is contained in:
parent
28cd46d485
commit
e6faa0e5b7
@ -308,10 +308,6 @@ void ServerSettings::readSettingsDefault(void)
|
||||
settings->suspend_index_limit=settings_default->getValue("suspend_index_limit", 100000);
|
||||
settings->client_quota=settings_default->getValue("client_quota", "100%");
|
||||
settings->end_to_end_file_backup_verification=(settings_default->getValue("end_to_end_file_backup_verification", "false")=="true");
|
||||
if(is_big_endian())
|
||||
{
|
||||
settings->end_to_end_file_backup_verification=true;
|
||||
}
|
||||
settings->internet_calculate_filehashes_on_client=(settings_default->getValue("internet_calculate_filehashes_on_client", "true")=="true");
|
||||
settings->use_incremental_symlinks=(settings_default->getValue("use_incremental_symlinks", "true")=="true");
|
||||
settings->image_file_format=settings_default->getValue("image_file_format", image_file_format_vhdz);
|
||||
@ -447,10 +443,6 @@ void ServerSettings::readSettingsClient(void)
|
||||
readSizeClientSetting("file_hash_collect_cachesize", &settings->file_hash_collect_cachesize);
|
||||
|
||||
readBoolClientSetting("end_to_end_file_backup_verification", &settings->end_to_end_file_backup_verification);
|
||||
if(is_big_endian())
|
||||
{
|
||||
settings->end_to_end_file_backup_verification=true;
|
||||
}
|
||||
readBoolClientSetting("internet_calculate_filehashes_on_client", &settings->internet_calculate_filehashes_on_client);
|
||||
readBoolClientSetting("silent_update", &settings->silent_update);
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -1,13 +1,10 @@
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<th style="border: 3px solid red; padding: 3px;width: 500px">
|
||||
UrBackup is currently not tested on big endian systems and probably won't work.
|
||||
UrBackup is currently only partially tested on big endian systems. In particular image backups and restores have not been tested.
|
||||
<br />
|
||||
UrBackup has been put into testing mode. This means UrBackup will always log debug messages.
|
||||
<br />
|
||||
UrBackup has been put into testing mode. This means UrBackup will
|
||||
<ul>
|
||||
<li>Always log debug messages</li>
|
||||
<li>Always verify file backups, causing slow file backups</li>
|
||||
</ul>
|
||||
If you want to help make UrBackup available on big endian systems please report all problems to the <a href="http://forums.urbackup.org">forums</a>
|
||||
or to our <a href="http://urbackup.atlassian.net/secure/">issue tracker</a>. Thank you for your help!
|
||||
</th>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user