aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-05-01 23:29:40 +0100
committerMatthew Wild <mwild1@gmail.com>2009-05-01 23:29:40 +0100
commit96fed62751454550bd5082b5d7b322fdf839033e (patch)
tree7f16f3fee11ff90dbc9ffab4f14531d07bb71b7f
parent0188e331a5f9e8cd99c9872e9580f5b7811a5ccc (diff)
parentb835db8db75400c1bebfc47019c27b851494978e (diff)
downloadprosody-96fed62751454550bd5082b5d7b322fdf839033e.tar.gz
prosody-96fed62751454550bd5082b5d7b322fdf839033e.zip
Merge with 0.4
-rw-r--r--HACKERS9
-rwxr-xr-xconfigure2
-rw-r--r--core/loggingmanager.lua1
3 files changed, 9 insertions, 3 deletions
diff --git a/HACKERS b/HACKERS
index 23b7c56c..a8585af0 100644
--- a/HACKERS
+++ b/HACKERS
@@ -1,5 +1,10 @@
Welcome hackers!
-This project accepts and *encourages* contributions. If you would like to get involved you can join us on our mailing list and discussion rooms. More information on these at http://prosody.im/discuss
+This project accepts and *encourages* contributions. If you would like to get
+involved you can join us on our mailing list and discussion rooms. More
+information on these at http://prosody.im/discuss
-Patches are welcome, though before sending we would appreciate if you read docs/coding_style.txt for guidelines on how to format your code, and are comfortable with copyright of contributions being assigned to the core developers.
+Patches are welcome, though before sending we would appreciate if you read
+docs/coding_style.txt for guidelines on how to format your code, and are
+comfortable with copyright of contributions being assigned to the core
+developers.
diff --git a/configure b/configure
index 2d304dc2..bd8eb48c 100755
--- a/configure
+++ b/configure
@@ -86,7 +86,7 @@ do
OSTYPE="$value"
OSTYPE_SET=yes
;;
- --data-dir=*)
+ --datadir=*)
DATADIR="$value"
DATADIR_SET=yes
;;
diff --git a/core/loggingmanager.lua b/core/loggingmanager.lua
index 13b091cc..ea0f497d 100644
--- a/core/loggingmanager.lua
+++ b/core/loggingmanager.lua
@@ -122,6 +122,7 @@ end
--- Definition of built-in logging sinks ---
+-- Null sink, must enter log_sink_types *first*
function log_sink_types.nowhere()
return function () return false; end;
end