Ver código fonte

Another debian license fix.

Add apache license for regexp that were delivered from SpamAssassin project.
Fix debian/copyright for src/dns.c.
tags/0.5.3
Vsevolod Stakhov 11 anos atrás
pai
commit
ea68f17ec2
63 arquivos alterados com 158 adições e 58 exclusões
  1. 17
    0
      conf/lua/regexp/drugs.lua
  2. 17
    0
      conf/lua/regexp/fraud.lua
  3. 17
    0
      conf/lua/regexp/headers.lua
  4. 17
    0
      conf/lua/regexp/lotto.lua
  5. 32
    0
      debian/copyright
  6. 1
    1
      src/binlog.c
  7. 1
    1
      src/bloom.c
  8. 1
    1
      src/buffer.c
  9. 1
    1
      src/cfg_utils.c
  10. 1
    1
      src/cfg_xml.c
  11. 1
    1
      src/classifiers/bayes.c
  12. 1
    1
      src/classifiers/classifiers.c
  13. 1
    1
      src/classifiers/winnow.c
  14. 1
    1
      src/controller.c
  15. 1
    1
      src/dns.c
  16. 1
    1
      src/events.c
  17. 1
    1
      src/expressions.c
  18. 1
    1
      src/filter.c
  19. 1
    1
      src/fstring.c
  20. 1
    1
      src/fuzzy.c
  21. 1
    1
      src/fuzzy_storage.c
  22. 1
    1
      src/hash.c
  23. 1
    1
      src/html.c
  24. 1
    1
      src/lmtp.c
  25. 1
    1
      src/lmtp_proto.c
  26. 1
    1
      src/logger.c
  27. 1
    1
      src/lua/lua_cfg_file.c
  28. 1
    1
      src/lua/lua_classifier.c
  29. 1
    1
      src/lua/lua_common.c
  30. 1
    1
      src/lua/lua_config.c
  31. 1
    1
      src/lua/lua_message.c
  32. 1
    1
      src/lua/lua_task.c
  33. 1
    1
      src/main.c
  34. 1
    1
      src/map.c
  35. 1
    1
      src/mem_pool.c
  36. 1
    1
      src/memcached-test.c
  37. 1
    1
      src/memcached.c
  38. 1
    1
      src/message.c
  39. 1
    1
      src/plugins/chartable.c
  40. 1
    1
      src/plugins/custom/ipmark/ipmark.c
  41. 1
    1
      src/plugins/custom/regmark/metaphone.c
  42. 1
    1
      src/plugins/custom/regmark/prefix_tree.c
  43. 1
    1
      src/plugins/custom/regmark/regmark.c
  44. 1
    1
      src/plugins/fuzzy_check.c
  45. 1
    1
      src/plugins/regexp.c
  46. 1
    1
      src/plugins/spf.c
  47. 1
    1
      src/plugins/surbl.c
  48. 1
    1
      src/protocol.c
  49. 1
    1
      src/radix.c
  50. 1
    1
      src/settings.c
  51. 1
    1
      src/smtp.c
  52. 1
    1
      src/smtp_proto.c
  53. 1
    1
      src/spf.c
  54. 1
    1
      src/statfile.c
  55. 1
    1
      src/statfile_sync.c
  56. 1
    1
      src/symbols_cache.c
  57. 1
    1
      src/tokenizers/osb.c
  58. 1
    1
      src/tokenizers/tokenizers.c
  59. 1
    1
      src/upstream.c
  60. 1
    1
      src/url.c
  61. 1
    1
      src/util.c
  62. 1
    1
      src/view.c
  63. 1
    1
      src/worker.c

+ 17
- 0
conf/lua/regexp/drugs.lua Ver arquivo

@@ -1,3 +1,20 @@
-- Actually these regular expressions were obtained from SpamAssassin project, so they are licensed by apache license:
--
-- Licensed to the Apache Software Foundation (ASF) under one or more
-- contributor license agreements. See the NOTICE file distributed with
-- this work for additional information regarding copyright ownership.
-- The ASF licenses this file to you under the Apache License, Version 2.0
-- (the "License"); you may not use this file except in compliance with
-- the License. You may obtain a copy of the License at:
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Drugs spam (viagra, pills etc)
-- XXX: remove this legacy to statfile


+ 17
- 0
conf/lua/regexp/fraud.lua Ver arquivo

@@ -1,3 +1,20 @@
-- Actually these regular expressions were obtained from SpamAssassin project, so they are licensed by apache license:
--
-- Licensed to the Apache Software Foundation (ASF) under one or more
-- contributor license agreements. See the NOTICE file distributed with
-- this work for additional information regarding copyright ownership.
-- The ASF licenses this file to you under the Apache License, Version 2.0
-- (the "License"); you may not use this file except in compliance with
-- the License. You may obtain a copy of the License at:
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Fraud messages (Nigeria spam, viagra, etc)
local reconf = config['regexp']


+ 17
- 0
conf/lua/regexp/headers.lua Ver arquivo

@@ -1,3 +1,20 @@
-- Actually these regular expressions were obtained from SpamAssassin project, so they are licensed by apache license:
--
-- Licensed to the Apache Software Foundation (ASF) under one or more
-- contributor license agreements. See the NOTICE file distributed with
-- this work for additional information regarding copyright ownership.
-- The ASF licenses this file to you under the Apache License, Version 2.0
-- (the "License"); you may not use this file except in compliance with
-- the License. You may obtain a copy of the License at:
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Definitions of header regexps

local reconf = config['regexp']

+ 17
- 0
conf/lua/regexp/lotto.lua Ver arquivo

@@ -1,3 +1,20 @@
-- Actually these regular expressions were obtained from SpamAssassin project, so they are licensed by apache license:
--
-- Licensed to the Apache Software Foundation (ASF) under one or more
-- contributor license agreements. See the NOTICE file distributed with
-- this work for additional information regarding copyright ownership.
-- The ASF licenses this file to you under the Apache License, Version 2.0
-- (the "License"); you may not use this file except in compliance with
-- the License. You may obtain a copy of the License at:
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Rules that are specific for lotto spam messages

local reconf = config['regexp']

+ 32
- 0
debian/copyright Ver arquivo

@@ -78,6 +78,38 @@ License: Expat
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Files: src/dns.c
Copyright: 2009-2012 Vsevolod Stakhov <vsevolod@highsecure.ru>
2008-2010 William Ahern <william@25thandClement.com>
License: BSD-2-Clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
.
Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
.
Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
.
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.

Files: conf/lua/regexp/*
Copyright: 2000-2012 The Apache Software Foundation
License: Apache 2.0
On Debian GNU/Linux system you can find the complete text of the
Apache-2.0 license in `/usr/share/common-licenses/Apache-2.0'

Files: *
Copyright: 2008-2012 Vsevolod Stakhov <vsevolod@highsecure.ru>
License: BSD-2-Clause

+ 1
- 1
src/binlog.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/bloom.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/buffer.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/cfg_utils.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/cfg_xml.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/classifiers/bayes.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/classifiers/classifiers.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/classifiers/winnow.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/controller.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/dns.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* Copyright (c) 2008, 2009, 2010 William Ahern
*
* All rights reserved.

+ 1
- 1
src/events.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/expressions.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/filter.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/fstring.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/fuzzy.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/fuzzy_storage.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/hash.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/html.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/lmtp.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/lmtp_proto.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/logger.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/lua/lua_cfg_file.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/lua/lua_classifier.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/lua/lua_common.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/lua/lua_config.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/lua/lua_message.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/lua/lua_task.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/main.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/map.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/mem_pool.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/memcached-test.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/memcached.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/message.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/plugins/chartable.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/plugins/custom/ipmark/ipmark.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/plugins/custom/regmark/metaphone.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/plugins/custom/regmark/prefix_tree.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/plugins/custom/regmark/regmark.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/plugins/fuzzy_check.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/plugins/regexp.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/plugins/spf.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/plugins/surbl.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/protocol.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/radix.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/settings.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/smtp.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/smtp_proto.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/spf.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/statfile.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/statfile_sync.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/symbols_cache.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/tokenizers/osb.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/tokenizers/tokenizers.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/upstream.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/url.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/util.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/view.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

+ 1
- 1
src/worker.c Ver arquivo

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, Vsevolod Stakhov
* Copyright (c) 2009-2012, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

Carregando…
Cancelar
Salvar