2013-06-12 Miguel de Dios <miguel.dedios@artica.es>
* util/pandora_xml_stress.pl: cleaned source code style. * pandora_server.redhat.spec: added the directories of collections and remote configuration into the list of chmod perms. Fixes: #2290 MERGED FROM THE BRANCH PANDORA_4.0 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8298 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
87267de112
commit
d267b07bcd
|
@ -1,3 +1,14 @@
|
|||
2013-06-12 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* util/pandora_xml_stress.pl: cleaned source code style.
|
||||
|
||||
* pandora_server.redhat.spec: added the directories of collections
|
||||
and remote configuration into the list of chmod perms.
|
||||
|
||||
Fixes: #2290
|
||||
|
||||
MERGED FROM THE BRANCH PANDORA_4.0
|
||||
|
||||
2013-06-07 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* pandora_server_installer: Fixed a bug that created
|
||||
|
|
|
@ -164,5 +164,9 @@ exit 0
|
|||
/etc/pandora/pandora_server.conf.new
|
||||
|
||||
%defattr(770,pandora,apache)
|
||||
%{_localstatedir}/spool/pandora
|
||||
%{_localstatedir}/spool/pandora/data_in
|
||||
%{_localstatedir}/spool/pandora/spool/pandora/data_in/md5
|
||||
%{_localstatedir}/spool/pandora/spool/pandora/data_in/collections
|
||||
%{_localstatedir}/spool/pandora/spool/pandora/data_in/conf
|
||||
|
||||
|
|
|
@ -38,9 +38,9 @@ my $XMLFiles :shared = 0;
|
|||
|
||||
my $LogLock :shared;
|
||||
|
||||
################################################################################
|
||||
########################################################################
|
||||
# Load the configuration file.
|
||||
################################################################################
|
||||
########################################################################
|
||||
sub load_config ($\%\@) {
|
||||
my ($conf_file, $conf, $modules) = @_;
|
||||
|
||||
|
@ -525,16 +525,17 @@ sub log_message ($$) {
|
|||
|
||||
|
||||
|
||||
################################################################################
|
||||
########################################################################
|
||||
# INI MD5 FUNCTIONS
|
||||
################################################################################
|
||||
########################################################################
|
||||
|
||||
# Used to calculate the MD5 checksum of a string
|
||||
use constant MOD232 => 2**32;
|
||||
|
||||
###############################################################################
|
||||
# MD5 leftrotate function. See http://en.wikipedia.org/wiki/MD5#Pseudocode.
|
||||
###############################################################################
|
||||
########################################################################
|
||||
# MD5 leftrotate function.
|
||||
# See http://en.wikipedia.org/wiki/MD5#Pseudocode.
|
||||
########################################################################
|
||||
sub leftrotate ($$) {
|
||||
my ($x, $c) = @_;
|
||||
|
||||
|
|
Loading…
Reference in New Issue