]> arthur.barton.de Git - netatalk.git/log
netatalk.git
10 years agoMerge branch 'v3-cleanup' into tmp/v3.0.4-alex tmp/v3.0.4-alex
Alexander Barton [Sat, 20 Jul 2013 10:12:21 +0000 (12:12 +0200)]
Merge branch 'v3-cleanup' into tmp/v3.0.4-alex

* v3-cleanup:
  autoconf: Indentation fixes
  Spelling fixes
  Whitespace and exclamation mark fixes

Conflicts:
etc/afpd/main.c

10 years agoMerge branch 'release-3.0.4'
Ralph Boehme [Fri, 24 May 2013 13:25:58 +0000 (15:25 +0200)]
Merge branch 'release-3.0.4'

10 years agoPrepare 3.0.4 release
Ralph Boehme [Fri, 24 May 2013 13:13:22 +0000 (15:13 +0200)]
Prepare 3.0.4 release

10 years agoFix bashism
Ralph Boehme [Tue, 14 May 2013 12:30:39 +0000 (14:30 +0200)]
Fix bashism

10 years agoNew option "afp interfaces"
Ralph Boehme [Sat, 11 May 2013 17:17:38 +0000 (19:17 +0200)]
New option "afp interfaces"

Allows specifying where Netatalk listens for AFP connections
by interface name, from FR #79.

10 years agoAdd documentation to DEVELOPER and add a summary line
Ralph Boehme [Tue, 14 May 2013 08:46:57 +0000 (10:46 +0200)]
Add documentation to DEVELOPER and add a summary line

10 years agoAdd XML files to distribution
Ralph Boehme [Tue, 14 May 2013 08:33:40 +0000 (10:33 +0200)]
Add XML files to distribution

10 years agoAdd checking for Docbook
Ralph Boehme [Tue, 14 May 2013 05:04:18 +0000 (07:04 +0200)]
Add checking for Docbook

10 years agoChange clean target
Ralph Boehme [Tue, 14 May 2013 04:55:20 +0000 (06:55 +0200)]
Change clean target

10 years agoFinish renaming
Ralph Boehme [Tue, 14 May 2013 04:52:03 +0000 (06:52 +0200)]
Finish renaming

10 years agoTry to move substitution to configure stage
Ralph Boehme [Mon, 13 May 2013 16:44:33 +0000 (18:44 +0200)]
Try to move substitution to configure stage

10 years agoAdd Docbook documentation to tree
Ralph Boehme [Mon, 13 May 2013 08:04:44 +0000 (10:04 +0200)]
Add Docbook documentation to tree

10 years agoChange default FinderInfo for directories to be all 0
Ralph Boehme [Fri, 10 May 2013 09:01:04 +0000 (11:01 +0200)]
Change default FinderInfo for directories to be all 0

Fixes bug #514:
Unable to delete EA com.apple.FinderInfo on folders.

10 years agoFix another missplelled compiler variable
Ralph Boehme [Thu, 2 May 2013 08:26:53 +0000 (10:26 +0200)]
Fix another missplelled compiler variable

10 years agoFix LDFLAGS variable mispelling
Ralph Boehme [Thu, 2 May 2013 08:14:15 +0000 (10:14 +0200)]
Fix LDFLAGS variable mispelling

10 years agoRevert "Remove size check that required a costly fstat()"
Ralph Boehme [Tue, 23 Apr 2013 13:57:48 +0000 (15:57 +0200)]
Revert "Remove size check that required a costly fstat()"

This reverts commit 2d4c0bd1e9b0ad0db32e4f3705fe67f657f57230.

10 years agoAdd missing include, fixes bug #512
Ralph Boehme [Tue, 23 Apr 2013 10:57:38 +0000 (12:57 +0200)]
Add missing include, fixes bug #512

11 years agoRemove size check that required a costly fstat()
Ralph Boehme [Thu, 18 Apr 2013 08:58:44 +0000 (10:58 +0200)]
Remove size check that required a costly fstat()

In case the client request count plus offset is large then the file,
we're supposed to send the available data and set AFP error to
AFPERR_EOF.
No need to use an extra fstat() for that, we can also simply check
the whether the amount of data read from the file matches the
requested amount.

From FR #78.

11 years agoDon't timeout when waiting for client requests
Ralph Boehme [Thu, 18 Apr 2013 08:55:45 +0000 (10:55 +0200)]
Don't timeout when waiting for client requests

From FR #78

11 years agoAdd non timeout semantics which avoid extra calls to gettimeofday()
Ralph Boehme [Thu, 18 Apr 2013 08:53:13 +0000 (10:53 +0200)]
Add non timeout semantics which avoid extra calls to gettimeofday()

From FR #78.

11 years agoDon't check for pending event if no FCE listeners are configured
Ralph Boehme [Thu, 18 Apr 2013 08:51:59 +0000 (10:51 +0200)]
Don't check for pending event if no FCE listeners are configured

Eliminates one time() syscall for every AFP transaction.
From FR #78.

11 years agoUse ostat in the dircache
Ralph Boehme [Tue, 26 Mar 2013 05:58:44 +0000 (06:58 +0100)]
Use ostat in the dircache

Fixes a possible crash in cname() where cname_mtouname calls
dirlookup() where the curdir is freed because the dircache
detected a dev/inode cache difference and evicted the object
from the cache.

Fixes bug #498.

11 years agoEnhance ACL mapping
Frank Lahm [Thu, 28 Feb 2013 07:02:48 +0000 (08:02 +0100)]
Enhance ACL mapping

Change globald ACL option 'map acl' to take the following options:
"none", "rights", "mode". The default is "rights".

none   = no mapping, this resembles the previous false/no setting
rights = map ACLs to Finder UARights, this resembles the previous
         true/yes setting. This is the default.
mode   = map ACLs to Finder UARights and UNIX mode

From FR #73.

11 years agoad_name is UTF8-MAC
HAT [Sun, 7 Apr 2013 14:16:45 +0000 (23:16 +0900)]
ad_name is UTF8-MAC

11 years agoFix an issue with filenames containing non-ASCII characters
Frank Lahm [Sat, 6 Apr 2013 15:08:37 +0000 (17:08 +0200)]
Fix an issue with filenames containing non-ASCII characters

Fix an issue with filenames containing non-ASCII characters that
lead to a failure setting the size of a files ressource fork.
This affected application like Adobe Photoshop where saving
files may fail. Fixes bug #511.

11 years agoOpening files without metadata EA may result in broken metadata EA
Ralph Boehme [Wed, 27 Mar 2013 16:18:22 +0000 (17:18 +0100)]
Opening files without metadata EA may result in broken metadata EA

ad_open_hf_ea() calls ad_flush() after initializing the new metadata,
but in ad_flush() ad_flush_ea() wasn't called because we didn't
yet increment the refcount.
Fix this by increasing the refcount in ad_open_hf() before calling
into ad_open_hf_ea(), decrementing it again in case of an error.

This ensure a valid metadata EA is created, but it still doesn't
set the CNID field values. Therefor in afp_openfork() we must check
whether the ad_open() created a metadata EA and then set the CNID
info.

Finally, check for malformed metadata EAs and delete them.

Fixes bug #510.

11 years agoChange log facility
Ralph Boehme [Wed, 27 Mar 2013 14:38:19 +0000 (15:38 +0100)]
Change log facility

11 years agoAdd 3.0.4 news
Ralph Boehme [Tue, 26 Mar 2013 17:46:24 +0000 (18:46 +0100)]
Add 3.0.4 news

11 years ago3.0.4dev
Frank Lahm [Tue, 26 Mar 2013 09:43:00 +0000 (10:43 +0100)]
3.0.4dev

11 years agoMerge branch 'release-3.0.3'
Frank Lahm [Tue, 26 Mar 2013 09:34:24 +0000 (10:34 +0100)]
Merge branch 'release-3.0.3'

11 years agoPrepare 3.0.3 release
Frank Lahm [Tue, 26 Mar 2013 09:17:03 +0000 (10:17 +0100)]
Prepare 3.0.3 release

11 years agoFix "ad ls" segfault if requested object is not in an AFP volume
Ralph Boehme [Fri, 22 Mar 2013 12:53:10 +0000 (13:53 +0100)]
Fix "ad ls" segfault if requested object is not in an AFP volume

Fixes bug #496.

11 years agoAdd afpstats manpage and update afp.conf
Ralph Boehme [Sun, 24 Mar 2013 08:35:19 +0000 (09:35 +0100)]
Add afpstats manpage and update afp.conf

11 years agonew configure option --with-init-dir=PATH
HAT [Fri, 22 Mar 2013 15:12:15 +0000 (00:12 +0900)]
new configure option --with-init-dir=PATH

11 years agoOnly configure libevent when used
Ralph Boehme [Fri, 22 Mar 2013 13:37:06 +0000 (14:37 +0100)]
Only configure libevent when used

11 years agoSetting POSIX ACLs on Linux
Frank Lahm [Thu, 14 Mar 2013 18:54:52 +0000 (19:54 +0100)]
Setting POSIX ACLs on Linux

The VFS module for setting ACLs on Linux returned an error when
try to set an ACL for a file that doesn't have a ressource fork.

Fix this by checking for ENOENT errno and then returning with 0
from the VFS stack.

11 years agoFix a debug message
Ralph Boehme [Fri, 22 Mar 2013 12:11:48 +0000 (13:11 +0100)]
Fix a debug message

11 years agoCan't set Finder label on symlinked folder with "follow symlinks = yes"
Ralph Boehme [Thu, 21 Mar 2013 16:21:59 +0000 (17:21 +0100)]
Can't set Finder label on symlinked folder with "follow symlinks = yes"

Fixes bug #508.

11 years agoIncrease IO size when sendfile() is not used
Ralph Boehme [Tue, 19 Mar 2013 14:26:03 +0000 (15:26 +0100)]
Increase IO size when sendfile() is not used

If sendfile() support is disabled, the current code results in an
IO size of 8k for transferring requested data to the client. Eg:
- client request to read DSI quantum size bytes (~250k) from a file
- afpd process loops read(8k, file) -> send(8k, client) until all
  250k have been transferred
This should be modified to read the whole 250k in one swoop from the
file to a buffer and then send the whole buffer in one swoop to the
client.

From FR #76.

11 years agoFix ressource fork refcounting
Ralph Boehme [Tue, 19 Mar 2013 12:15:10 +0000 (13:15 +0100)]
Fix ressource fork refcounting

11 years agoread_file() clobbered the AFP error code
Ralph Boehme [Tue, 19 Mar 2013 11:18:34 +0000 (12:18 +0100)]
read_file() clobbered the AFP error code

11 years agoUse FreeBSD sendfile() capability to send protocol header
Frank Lahm [Fri, 15 Mar 2013 08:19:40 +0000 (09:19 +0100)]
Use FreeBSD sendfile() capability to send protocol header

When transmitting file contents to a client with sendfile(), on
every platform other then Solaris (where we use sendfilev()), we
send the AFP the protocol header with an additional send with
MSG_MORE before calling sendfile().
FreeBSD sendfile() supports sending protocol header (and trailer)
data similarly to Solaris sendfilev().

11 years agoMerge remote branch 'github/develop' into develop
Frank Lahm [Fri, 15 Mar 2013 12:41:39 +0000 (13:41 +0100)]
Merge remote branch 'github/develop' into develop

11 years agoMerge pull request #25 from hat001/of_findname
franklahm [Fri, 15 Mar 2013 12:40:45 +0000 (05:40 -0700)]
Merge pull request #25 from hat001/of_findname

of_findname(): missing argument

11 years agoof_findname(): missing argument
HAT [Fri, 15 Mar 2013 11:32:21 +0000 (20:32 +0900)]
of_findname(): missing argument

11 years agoafpstats-service.xml afpstats_service_glue.h were missing in distribution
Frank Lahm [Mon, 11 Mar 2013 17:42:23 +0000 (18:42 +0100)]
afpstats-service.xml afpstats_service_glue.h were missing in distribution

11 years agoPermissions of ._ AppleDouble rfork after conversion from v2 to ea.
Frank Lahm [Mon, 11 Mar 2013 16:19:28 +0000 (17:19 +0100)]
Permissions of ._ AppleDouble rfork after conversion from v2 to ea.

Fixes bug #505.

11 years agosys_lsetxattr error messages when mounting read only filesystem
Ralph Boehme [Tue, 5 Mar 2013 16:40:22 +0000 (17:40 +0100)]
sys_lsetxattr error messages when mounting read only filesystem

Fixes bug #504.

11 years agoafpd -V show dbus and dtrace
HAT [Sun, 10 Mar 2013 15:23:30 +0000 (00:23 +0900)]
afpd -V show dbus and dtrace

11 years agoConversion from adouble v2 to ea for directories
Frank Lahm [Sat, 9 Mar 2013 13:23:33 +0000 (14:23 +0100)]
Conversion from adouble v2 to ea for directories

Fixes bug #500.

11 years agoSolaris fixes for bugs #501 and #502
Ralph Boehme [Sat, 9 Mar 2013 12:50:37 +0000 (13:50 +0100)]
Solaris fixes for bugs #501 and #502

11 years agoFile's ressource fork can't be read if metadata EA is missing
Frank Lahm [Fri, 8 Mar 2013 17:29:13 +0000 (18:29 +0100)]
File's ressource fork can't be read if metadata EA is missing

Fixes bug #501.

11 years agoFix an issue caused by read-only ._ ressource forks
Frank Lahm [Thu, 7 Mar 2013 18:03:30 +0000 (19:03 +0100)]
Fix an issue caused by read-only ._ ressource forks

Fixes bug #502.

11 years agoAdd IPC commands to string array
Frank Lahm [Wed, 6 Mar 2013 18:10:06 +0000 (19:10 +0100)]
Add IPC commands to string array

11 years agoCheck for dbus_g_bus_get_private(), older dbus-glib versions seem to miss it
Frank Lahm [Wed, 6 Mar 2013 17:35:15 +0000 (18:35 +0100)]
Check for dbus_g_bus_get_private(), older dbus-glib versions seem to miss it

11 years agoPossible fixes to afpstats dbus issue
Ralph Boehme [Tue, 5 Mar 2013 08:32:28 +0000 (09:32 +0100)]
Possible fixes to afpstats dbus issue

Initialize afpstats before calling configinit in main() thus ensuring
dbus glib thread initilisation is performed as we need it.

Use private dbus connection from dbus_g_bus_get_private() which should
help with issues seen where our avahi dbus thread crashed.

11 years agoNew option 'afpstats'
Ralph Boehme [Mon, 4 Mar 2013 16:45:19 +0000 (17:45 +0100)]
New option 'afpstats'

11 years agoChange pkg-config check for dbus-glib
Ralph Boehme [Wed, 27 Feb 2013 07:57:55 +0000 (08:57 +0100)]
Change pkg-config check for dbus-glib

11 years agoFix distcheck error caused by pkgconfig stuff
Ralph Boehme [Mon, 25 Feb 2013 17:07:01 +0000 (18:07 +0100)]
Fix distcheck error caused by pkgconfig stuff

11 years agoAdd PATH to helpstring
Ralph Boehme [Mon, 25 Feb 2013 11:12:48 +0000 (12:12 +0100)]
Add PATH to helpstring

11 years agoRemove unneeded include
Ralph Boehme [Sun, 24 Feb 2013 09:15:05 +0000 (10:15 +0100)]
Remove unneeded include

11 years agoconfigure summary show paths
HAT [Fri, 22 Feb 2013 14:30:10 +0000 (23:30 +0900)]
configure summary show paths

11 years agoRemove duplicated test
Ralph Boehme [Fri, 22 Feb 2013 11:56:43 +0000 (12:56 +0100)]
Remove duplicated test

11 years agoAdd a distinct variable for storing result of checks
Frank Lahm [Fri, 22 Feb 2013 09:53:55 +0000 (10:53 +0100)]
Add a distinct variable for storing result of checks

11 years agoReload groups when reloading volumes
Ralph Boehme [Thu, 21 Feb 2013 14:19:02 +0000 (15:19 +0100)]
Reload groups when reloading volumes

Reload the user groups every time the volume configuration changes
and also to call initgroups() again with the possibly changed groups.

FR #71

11 years agoAdd checking for and linking with libgthread
Frank Lahm [Thu, 21 Feb 2013 13:48:09 +0000 (14:48 +0100)]
Add checking for and linking with libgthread

11 years agoAdd dtrace provider 'afp' and dtrace probes
Ralph Boehme [Mon, 11 Feb 2013 13:42:12 +0000 (14:42 +0100)]
Add dtrace provider 'afp' and dtrace probes

There are three dtrace probes:
- all AFP functions, passing the function name as argument
- AFP read and write, passing the IO size as argument
- all CNID functions

In order to be able to simply differintiate between disk IO and
network IO, replace all occurences of read and write on sockets
with send/recv, and replace the use of writev in the logging code
with two calls to write.
As a result, using dtrace probes for read() and write() syscalls
can be used to gather metrics for disk IO, while probing send(),
recv() and writev() probe network IO.

11 years agoAFP statistics via dbus IPC
Ralph Boehme [Tue, 5 Feb 2013 16:25:27 +0000 (17:25 +0100)]
AFP statistics via dbus IPC

Fix PAM config installation. make distcheck was failing on Solaris
in uninstall, because the uninstall target ran some `rm -f PAMFILE`
where PAMFILE is hardcoded to /etc/pam.d. The resulting EPERM
causes the make target to fail.

11 years agoSeveral fixes in ad_conv_dehex()
Ralph Boehme [Tue, 19 Feb 2013 16:35:04 +0000 (17:35 +0100)]
Several fixes in ad_conv_dehex()

Testing whether we need to perform dehexing was done by a simple
strchr(':'), thus names only containing a single ':' would trigger
dehexing even though they might not contain the relevant strings
":2e" or :2f".

Also fix a ressource leak in bfindreplace() and simplify the
check whether a rename took place in enumerate.c.

11 years agotypo in netatalk.c
HAT [Fri, 15 Feb 2013 12:13:35 +0000 (21:13 +0900)]
typo in netatalk.c

11 years agoAdd checks for required packages
Ralph Boehme [Fri, 15 Feb 2013 10:32:15 +0000 (11:32 +0100)]
Add checks for required packages

11 years agoUser homes directory names
Ralph Boehme [Fri, 15 Feb 2013 10:19:50 +0000 (11:19 +0100)]
User homes directory names

Fix an issue with user homes when user home directory has not the
same name as the username.

Fixes bug #497.

11 years agoMerge pull request #20 from hat001/redhatinit
franklahm [Thu, 14 Feb 2013 14:47:17 +0000 (06:47 -0800)]
Merge pull request #20 from hat001/redhatinit

update RedHat initscript

11 years agoupdate RedHat initscript
HAT [Thu, 14 Feb 2013 14:27:29 +0000 (23:27 +0900)]
update RedHat initscript

"graceful" is removed because SIGQUIT is gone.
"reload" use SIGHUP.
"condrestart" is added because spec file requires it.

11 years agoafpd/file: fix check in deletefile
Riccardo Magliocchetti [Wed, 13 Feb 2013 21:18:41 +0000 (22:18 +0100)]
afpd/file: fix check in deletefile

AD_RSRC_OPEN(ad) is defined as:

(((ad)->ad_reso_refcount) && (ad_reso_fileno(ad) >= 0))

So there's no way it can returns -1

Reported by coverity as CID #762087.

11 years agolibatalk: avoid double close in ad_openat
Riccardo Magliocchetti [Wed, 13 Feb 2013 20:58:00 +0000 (21:58 +0100)]
libatalk: avoid double close in ad_openat

Partly revert 8852315e574879a9548c31f84c6eaea59f1db90f

Reported by Coverity as CID #980995.

11 years agoafpd/volume: avoid read of unitialized pointer
Riccardo Magliocchetti [Wed, 13 Feb 2013 20:54:01 +0000 (21:54 +0100)]
afpd/volume: avoid read of unitialized pointer

Reported by Coverity as CID #980994.

11 years agoCouldn't create folders on FreeBSD 9.1 ZFS fileystems
Frank Lahm [Wed, 13 Feb 2013 16:27:52 +0000 (17:27 +0100)]
Couldn't create folders on FreeBSD 9.1 ZFS fileystems

Fixes bug #491.

11 years agoMerge pull request #18 from xrmx/coverity3
franklahm [Tue, 12 Feb 2013 06:01:29 +0000 (22:01 -0800)]
Merge pull request #18 from xrmx/coverity3

More issues reported by Coverity

11 years agolibatal/vfs: stats a path before checking if it is a directory
Riccardo Magliocchetti [Mon, 11 Feb 2013 21:43:53 +0000 (22:43 +0100)]
libatal/vfs: stats a path before checking if it is a directory

Reported by Coverity as CID #201301.

11 years agoafpd/directory: avoid unitialized pointer read
Riccardo Magliocchetti [Mon, 11 Feb 2013 21:35:21 +0000 (22:35 +0100)]
afpd/directory: avoid unitialized pointer read

Initialize fullpath to null so that in case of error before its
allocation we don't call bdestroy on random memory.

Reported by Coverity as CID #201284.

11 years agocnid_dbd: fix resource leak
Riccardo Magliocchetti [Mon, 11 Feb 2013 21:31:24 +0000 (22:31 +0100)]
cnid_dbd: fix resource leak

Reported by Coverity as CID #968567.

11 years agoafpd/colume: fix a couple of memory leaks
Riccardo Magliocchetti [Mon, 11 Feb 2013 21:18:01 +0000 (22:18 +0100)]
afpd/colume: fix a couple of memory leaks

Reported by Coverity as CID #201199, #201200.

11 years agoafpd/filedir: fix memory leak
Riccardo Magliocchetti [Mon, 11 Feb 2013 21:11:46 +0000 (22:11 +0100)]
afpd/filedir: fix memory leak

Reported by Coverity as CID #201196.

11 years agoafpd/file: fix memory leak
Riccardo Magliocchetti [Mon, 11 Feb 2013 21:03:26 +0000 (22:03 +0100)]
afpd/file: fix memory leak

Reported by Coverity as CID #201194.

11 years agosystemd service file use PIDFile and ExecReload
Ralph Boehme [Thu, 7 Feb 2013 11:25:13 +0000 (12:25 +0100)]
systemd service file use PIDFile and ExecReload

Add --with-lockfile=PATH configure option for specifying an
alternative path for the netatalk lockfile.

Implements FR #70.

11 years agoMerge pull request #17 from hat001/staticlibevent
franklahm [Sun, 10 Feb 2013 07:30:24 +0000 (23:30 -0800)]
Merge pull request #17 from hat001/staticlibevent

bundled libevent2 is static

11 years agobundled libevent2 is static
HAT [Sun, 10 Feb 2013 03:27:35 +0000 (12:27 +0900)]
bundled libevent2 is static

11 years agoMerge pull request #16 from xrmx/coverity2
franklahm [Sat, 9 Feb 2013 21:09:50 +0000 (13:09 -0800)]
Merge pull request #16 from xrmx/coverity2

More issues reported by Coverity

11 years agoMerge pull request #15 from xrmx/coverity1
franklahm [Sat, 9 Feb 2013 21:09:02 +0000 (13:09 -0800)]
Merge pull request #15 from xrmx/coverity1

Fix some issues reported by Coverity scan

11 years agoafpd/hash: return error if we can't allocate the hash
Riccardo Magliocchetti [Sat, 9 Feb 2013 11:11:19 +0000 (12:11 +0100)]
afpd/hash: return error if we can't allocate the hash

Instead of possible dereference of null.

Reported by Coverity as CID #968565.

11 years agoafpd/acls: fix dereference before null check error
Riccardo Magliocchetti [Sat, 9 Feb 2013 11:07:28 +0000 (12:07 +0100)]
afpd/acls: fix dereference before null check error

Reported by Coverity as CID #968569.

11 years agoafpd: fix out of bounds write
Riccardo Magliocchetti [Sat, 9 Feb 2013 10:57:46 +0000 (11:57 +0100)]
afpd: fix out of bounds write

Reported by Coverity as CID #762111.

11 years agocnid_metad: avoid out of bounds read
Riccardo Magliocchetti [Sat, 9 Feb 2013 10:49:42 +0000 (11:49 +0100)]
cnid_metad: avoid out of bounds read

The check of i < MAXVOLS should be moved before referencing srv[i].

Reported by Coverity as CID #762114.

11 years agolibatalk: Fix a couple of issues in ad_openat()
Riccardo Magliocchetti [Sat, 9 Feb 2013 10:36:29 +0000 (11:36 +0100)]
libatalk: Fix a couple of issues in ad_openat()

Reported by coverity as CID #762151, #762127.

11 years agoafpd/fce_api: avoid null pointer dereference
Riccardo Magliocchetti [Fri, 1 Feb 2013 18:33:59 +0000 (19:33 +0100)]
afpd/fce_api: avoid null pointer dereference

Move path NULL check before it is actually referenced.

Reported by Coverity as CID #968570.

11 years agoafpd/fork: avoid use after free on of_closefork error
Riccardo Magliocchetti [Fri, 1 Feb 2013 18:23:28 +0000 (19:23 +0100)]
afpd/fork: avoid use after free on of_closefork error

Reported by Coverity as CID #201311.

11 years agoafpd/hash: avoid use after free in main in case of OOM
Riccardo Magliocchetti [Fri, 1 Feb 2013 18:22:17 +0000 (19:22 +0100)]
afpd/hash: avoid use after free in main in case of OOM

Reported by Coverity as CID #968574, #968575.

11 years agoRemove continous service feature
Ralph Boehme [Wed, 6 Feb 2013 07:30:17 +0000 (08:30 +0100)]
Remove continous service feature

11 years agoMerge branch 'autobuild-dsi' into develop
Ralph Boehme [Mon, 4 Feb 2013 16:07:08 +0000 (17:07 +0100)]
Merge branch 'autobuild-dsi' into develop