diff options
author | dougb <dougb@FreeBSD.org> | 2011-05-15 10:49:17 +0800 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2011-05-15 10:49:17 +0800 |
commit | d4eae248fc3499866ff557806dc95e19f9c41643 (patch) | |
tree | 41e2f7bdfeea9edb4e6eedfd70e9de4929e5ef02 /net-p2p/mldonkey | |
parent | c6b86ccb25cd0028406167283ff431a3267900fc (diff) | |
download | freebsd-ports-gnome-d4eae248fc3499866ff557806dc95e19f9c41643.tar.gz freebsd-ports-gnome-d4eae248fc3499866ff557806dc95e19f9c41643.tar.zst freebsd-ports-gnome-d4eae248fc3499866ff557806dc95e19f9c41643.zip |
Remove painful examples of foo="", with particular prejudice against
constructions that parse out to [ -z "$foo" ] && foo=""
These are bad examples that get copied and pasted into new code, so the
hope is that with less bad examples there will be less need for me to
bring this up in review.
In a few of these files all that were changed were comments so that next
time I search for these patterns I won't trip on the file for no reason.
In a few places, add $FreeBSD$
No functional changes, so no PORTREVISION bumps
Diffstat (limited to 'net-p2p/mldonkey')
-rw-r--r-- | net-p2p/mldonkey/files/kill_mldonkey | 2 | ||||
-rw-r--r-- | net-p2p/mldonkey/files/mlnet.in | 9 |
2 files changed, 5 insertions, 6 deletions
diff --git a/net-p2p/mldonkey/files/kill_mldonkey b/net-p2p/mldonkey/files/kill_mldonkey index 71c40bc1ac83..f3f8078045fc 100644 --- a/net-p2p/mldonkey/files/kill_mldonkey +++ b/net-p2p/mldonkey/files/kill_mldonkey @@ -34,7 +34,7 @@ # like this: # #MLNETUSER="admin" -#MLNETPASS="" +#MLNETPASS="pass" #MLNETHOST="127.0.0.1" #MLNETPORT="4080" diff --git a/net-p2p/mldonkey/files/mlnet.in b/net-p2p/mldonkey/files/mlnet.in index 2874c2b3c322..71a961417124 100644 --- a/net-p2p/mldonkey/files/mlnet.in +++ b/net-p2p/mldonkey/files/mlnet.in @@ -11,11 +11,10 @@ # # Add the following lines to /etc/rc.conf to enable mlnet: # -#mlnet_enable="YES" -#mlnet_user="" -#mlnet_flags="" -#mlnet_logfile="" -# +# mlnet_enable="YES" +# mlnet_user="user" +# mlnet_logfile="file" +# mlnet_flags (Set as needed) . /etc/rc.subr |