]> arthur.barton.de Git - netatalk.git/log
netatalk.git
21 years agodesktop.c:
didg [Sun, 16 Feb 2003 12:35:04 +0000 (12:35 +0000)]
desktop.c:
more if ((A = B) == C) to (C == (A = B))

directory.c:
deletecurdir() move cnid_delete inside opendir() closedir()

fork.c:
getmetada() use struct path in parameter

afp_openfork() we need to keep track if we (re)open the ressource fork.
it was a problem if:
- there's no ressource fork
- the data fork is open read write
- the ressource fork is open read write
- the data fork is closed.
With a Mac it was an issue with noadouble and no .AppleDouble folder,
otherwise the ressource fork is always created before opening the data fork.
(if it can't, because permission on .AppleDouble, then the RF can't be open
read write).

enumerate.c:
more if ((A = B) == C) to (C == (A = B))
adddir() free allocated memory

file.c:
use the new getmetada() format

copyfile() use ad_open, with the new ADFLAGS_NOHF attrib., rather than
open syscall.

deletefile() move cnid_delete inside open() close()

afp_creatfile() if there's an error in ressource fork creation then delete
the data fork if any. It's the reason for ADFLAGS_NOHF, we need to be sure
that the data fork was created by us, ie we have a file descriptor for it.

filedir.c:
remove cnid_delete(), now in deletefile()

adouble.h:
add a new attrib. ADFLAGS_NOHF mean don't return an error if there's
no ressource fork.
Helper for using ad_open in copyfile() and in afp_createfile()

cnid.h:
add CNID_ERR_CLOSE error, not used for now.

ad_lock.c:
ad_fcntl_lock() a previous fix a typo =/==, and now we have a
reference used after freed in realloc.

hf2off() df2off() change int to off_t

ad_open.c:
ad_open() ADFLAGS_NOHF attrib

21 years agoMake sure the BDB bin directory is properly set.
jmarcus [Sun, 16 Feb 2003 02:13:05 +0000 (02:13 +0000)]
Make sure the BDB bin directory is properly set.

Submitted by: Olaf Hering <olh@suse.de>

21 years agoUpdated NEWS file in HEAD from latest version from 1.6 branch.
srittau [Fri, 14 Feb 2003 16:56:10 +0000 (16:56 +0000)]
Updated NEWS file in HEAD from latest version from 1.6 branch.

21 years agoadd AFP3.x login, patch from Burkhard Schmidt
didg [Tue, 11 Feb 2003 16:41:56 +0000 (16:41 +0000)]
add AFP3.x login, patch from Burkhard Schmidt

21 years agoTry to use the fully-qualified domain name when registering with SLP.
jmarcus [Sun, 9 Feb 2003 20:34:38 +0000 (20:34 +0000)]
Try to use the fully-qualified domain name when registering with SLP.

Submitted by: Alexander Barton <alex@barton.de>

21 years agobugfix: make it compile on system without pread/pread, fix from Alexander Barton
didg [Sun, 9 Feb 2003 15:36:13 +0000 (15:36 +0000)]
bugfix: make it compile on system without pread/pread, fix from Alexander Barton

21 years ago*Don't* use --copy in autogen.sh. Symlinks are the way to go, since this
srittau [Sat, 8 Feb 2003 11:49:42 +0000 (11:49 +0000)]
*Don't* use --copy in autogen.sh. Symlinks are the way to go, since this
assures that ensures that always the latest version of these files are used.
(Also all other projects I know do it that way, too.)

21 years agobugfix: ifdef a transaction related call wen CDB is defined.
didg [Fri, 7 Feb 2003 15:00:55 +0000 (15:00 +0000)]
bugfix: ifdef a transaction related call wen CDB is defined.

21 years agobugfix: close the right fork in renamefile, copy and paste error...
didg [Tue, 4 Feb 2003 18:26:20 +0000 (18:26 +0000)]
bugfix: close the right fork in renamefile, copy and paste error...

21 years agobugfix: renamefile() various bugs with concurrent access, open file, and
didg [Sat, 1 Feb 2003 19:34:55 +0000 (19:34 +0000)]
bugfix: renamefile() various bugs with concurrent access, open file, and
permission, fewer case where the job is half done, eg return an error but the
data fork is moved or the ressource fork is lost.

code cleaning: deletefile() ad_open, ad_lock already deal with read only file

21 years agobugfix: deletecurdir() with concurrent access, dir->d_child != NULL doesn't mean...
didg [Fri, 31 Jan 2003 17:47:06 +0000 (17:47 +0000)]
bugfix: deletecurdir() with concurrent access, dir->d_child != NULL doesn't mean the dir is not empty.

21 years agoa little cleaning
didg [Fri, 31 Jan 2003 17:38:00 +0000 (17:38 +0000)]
a little cleaning

21 years agofor file open in exclusive mode (read/write, deny read, deny write) lock the
didg [Fri, 31 Jan 2003 11:26:35 +0000 (11:26 +0000)]
for file open in exclusive mode (read/write, deny read, deny write) lock the
whole file in afp_openfork.

21 years agocode cleaning: if we can't get a write lock on a file open read only is a fcntl issue...
didg [Thu, 30 Jan 2003 17:32:45 +0000 (17:32 +0000)]
code cleaning: if we can't get a write lock on a file open read only is a fcntl issue, move the logic from file.c to ad_lock.c.

21 years agoRemove DB_AUTO_COMMIT from the DB->open flags. This is not applicable with
jmarcus [Wed, 29 Jan 2003 20:31:45 +0000 (20:31 +0000)]
Remove DB_AUTO_COMMIT from the DB->open flags.  This is not applicable with
CDB.

Reported by: didier <dgautheron@magic.fr>

21 years agoUse three-argument AC_DEFINE and AC_DEFINE_UNQUOTED to fix a deprecation
srittau [Wed, 29 Jan 2003 00:16:22 +0000 (00:16 +0000)]
Use three-argument AC_DEFINE and AC_DEFINE_UNQUOTED to fix a deprecation
warning.

21 years agoRemove references to cnid_dump. I think these accidentally crept in in
jmarcus [Tue, 28 Jan 2003 21:37:13 +0000 (21:37 +0000)]
Remove references to cnid_dump.  I think these accidentally crept in in
Didier's last commit.

21 years ago#include "config.h" -> #include <config.h>
srittau [Tue, 28 Jan 2003 15:30:56 +0000 (15:30 +0000)]
#include "config.h" -> #include <config.h>

21 years ago#undef __USE_MISC before #defining it.
srittau [Tue, 28 Jan 2003 15:19:55 +0000 (15:19 +0000)]
#undef __USE_MISC before #defining it.

21 years agoRemoved unused files.
srittau [Tue, 28 Jan 2003 15:14:31 +0000 (15:14 +0000)]
Removed unused files.

21 years agoRemoved an unused file.
srittau [Tue, 28 Jan 2003 15:09:44 +0000 (15:09 +0000)]
Removed an unused file.

21 years agoFixed Netatalk's version number (pointed out by Olaf).
srittau [Sun, 26 Jan 2003 16:57:50 +0000 (16:57 +0000)]
Fixed Netatalk's version number (pointed out by Olaf).

21 years agoAdded a missing define. (Olaf)
srittau [Sun, 26 Jan 2003 16:54:46 +0000 (16:54 +0000)]
Added a missing define. (Olaf)

21 years agoRevert last (erroneous) check-in.
srittau [Sun, 26 Jan 2003 16:51:22 +0000 (16:51 +0000)]
Revert last (erroneous) check-in.

21 years agoDon't assume offsets, specify the struct member. (Olaf)
srittau [Sun, 26 Jan 2003 16:40:44 +0000 (16:40 +0000)]
Don't assume offsets, specify the struct member. (Olaf)

21 years agobugfix file.c directory.c: open directory descriptor leak, buffer overflow if
didg [Sun, 26 Jan 2003 10:42:40 +0000 (10:42 +0000)]
bugfix file.c directory.c: open directory descriptor leak, buffer overflow if
path > MAX_PATH.
fork.c rename a function, keep afp_xxx only for AFP calls.

21 years agobugfix: afp_exchangefiles. need to stat() files again for cnid update when it's a...
didg [Fri, 24 Jan 2003 12:42:31 +0000 (12:42 +0000)]
bugfix: afp_exchangefiles. need to stat() files again for cnid update when it's a copy (ie not on the same device).

21 years agobugfix: dirlookup() return dirsearch error if any (AFPERR_PARAM).
didg [Fri, 24 Jan 2003 07:08:42 +0000 (07:08 +0000)]
bugfix: dirlookup() return dirsearch error if any (AFPERR_PARAM).
cname():
we always need to call movecwd, even if we extended the cache eg:
cname dir1\0dir2\0\0 have to chdir to dir1. It wasn't the case if dir2 was not
in the cache.

do the right stuff when the user don't have right access to a directory. Some
calls are unfixable (afp_xxxcomment) or will always fail (afp_delete) but it'd
be ok.

21 years agoimprovement: add a SUIDDIR (aka BSD like) for admin user, files create by an admin
didg [Fri, 24 Jan 2003 06:58:23 +0000 (06:58 +0000)]
improvement: add a SUIDDIR (aka BSD like) for admin user, files create by an admin
(euid root) are now owned by their parent directory owner. TODO configure option?,
security?

21 years agoPatch by Olaf: first argument of memset is a pointer.
srittau [Tue, 21 Jan 2003 16:31:38 +0000 (16:31 +0000)]
Patch by Olaf: first argument of memset is a pointer.

21 years agoPatch by Olaf: Fix sysvdir for SuSE.
srittau [Tue, 21 Jan 2003 16:25:57 +0000 (16:25 +0000)]
Patch by Olaf: Fix sysvdir for SuSE.

21 years agoPatch by Olaf: enhance --enable-fhs.
srittau [Tue, 21 Jan 2003 16:22:59 +0000 (16:22 +0000)]
Patch by Olaf: enhance --enable-fhs.

21 years agosetfilparam: with AFP3.x PDINFO bit means UTF8 filename and can't be set in setfilparam.
didg [Tue, 21 Jan 2003 10:09:13 +0000 (10:09 +0000)]
setfilparam: with AFP3.x PDINFO bit means UTF8 filename and can't be set in setfilparam.

21 years agomore 'if ((A = B()) == C)' to 'if (C== (A = B())) changes
didg [Tue, 21 Jan 2003 09:58:58 +0000 (09:58 +0000)]
more 'if ((A = B()) == C)' to 'if (C== (A = B())) changes

21 years agofix to a a fix: for duplicates ID in the cache.
didg [Tue, 21 Jan 2003 07:55:07 +0000 (07:55 +0000)]
fix to a a fix: for duplicates ID in the cache.

21 years agobugfix: adddir() if an ID already exist, remove it from its old location in the
didg [Sun, 19 Jan 2003 00:04:37 +0000 (00:04 +0000)]
bugfix: adddir() if an ID already exist, remove it from its old location in the
folders cache.

21 years agoMerge the relevant bits from README.cnid into README.ids, then remove
jmarcus [Fri, 17 Jan 2003 03:16:28 +0000 (03:16 +0000)]
Merge the relevant bits from README.cnid into README.ids, then remove
README.cnid.

Suggested by: Simon Bazley <simon@eyeeye.com>

21 years agoBUGFIX: deny mode, tmp lock, byte lock when length is -1, setforkparams,
didg [Thu, 16 Jan 2003 21:18:15 +0000 (21:18 +0000)]
BUGFIX: deny mode, tmp lock, byte lock when length is -1, setforkparams,
AFP3 large file support

deny mode: make it works with more than 2 openers

tmp lock: check conflicting locks with files open multiple times by the same
process, was only check locks held by other afpd.

byte lock: -1 means to the maximum size of a fork, was always error EOVERFLOW,
because we don't start from offset 0 and we can't use the POSIX way ie length 0.

setforparams: only conflicting locks if it's a truncate and it removes a locked
range, was any lock return an error.

AFP3: check for negative values with 32 bits calls, setforparams for size >2GBytes,
read and write with offset > 2GBytes.

21 years ago/tmp/log
didg [Thu, 16 Jan 2003 20:06:33 +0000 (20:06 +0000)]
/tmp/log

21 years agoFix a2boot on 64-bit platforms.
jmarcus [Wed, 15 Jan 2003 06:24:28 +0000 (06:24 +0000)]
Fix a2boot on 64-bit platforms.

Submitted by: Steven N. Hirsch <shirsch@adelphia.net>

21 years agostupid stuff, replace
didg [Sun, 12 Jan 2003 14:39:57 +0000 (14:39 +0000)]
stupid stuff, replace
if ((a = b) == c)
with
if (c == (a = b))
for '==' and '!=' operators. the form ((a = b) == c) is confusing for some, not
smart enough, data-flow analyser.

21 years ago* Add ChangeLog entries for recent contribution by Steve Hirsch
jmarcus [Sat, 11 Jan 2003 17:31:43 +0000 (17:31 +0000)]
* Add ChangeLog entries for recent contribution by Steve Hirsch
* Add Steve's email to the CONTRIBUTORS list

21 years ago* Add Apple II boot support for Appl IIe (with workstation card) and
jmarcus [Sat, 11 Jan 2003 17:26:05 +0000 (17:26 +0000)]
* Add Apple II boot support for Appl IIe (with workstation card) and
  Apple IIgs using built-in LocalTalk [1]
* Fix some ProDOS file attribute problems
* Fix the RedHat RPM build for RH 7.3 and 8.0
* Fix a few other build nits

Submitted by: Steven N. Hirsch <shirsch@adelphia.net>
Obtained from: Marsha Jackson [1]

21 years agobugfix: afp_openfork() case ressource fork open read-only and then read-write withou...
didg [Fri, 10 Jan 2003 05:29:01 +0000 (05:29 +0000)]
bugfix: afp_openfork() case  ressource fork open read-only and then read-write without file in .AppleDouble.

21 years agoAFP 3.x add dhx pam uam, not tested!
didg [Wed, 8 Jan 2003 22:16:24 +0000 (22:16 +0000)]
AFP 3.x add dhx pam uam, not tested!

21 years ago- better error reporting, don't always return noobj.
didg [Wed, 8 Jan 2003 15:01:32 +0000 (15:01 +0000)]
- better error reporting, don't always return noobj.
- remove unreachable code in cname.
- revert previous patch for permission.
- check pathname len in movecwd.

21 years agocheck input sindex >=1.
didg [Tue, 7 Jan 2003 22:13:39 +0000 (22:13 +0000)]
check input sindex >=1.

21 years agoremove a c++ //
didg [Tue, 7 Jan 2003 22:06:42 +0000 (22:06 +0000)]
remove a c++ //

21 years agoMake FPCatSearch a bit more interactive - if there are not enough responses and
rlewczuk [Tue, 7 Jan 2003 17:08:26 +0000 (17:08 +0000)]
Make FPCatSearch a bit more interactive - if there are not enough responses and
server is still busy searching for more than 1s.

21 years agoMoving files between different folders on the same volume - changelog
rlewczuk [Tue, 7 Jan 2003 16:00:29 +0000 (16:00 +0000)]
Moving files between different folders on the same volume - changelog

21 years agoMoving things between two folders on the same volume but different group ownership...
rlewczuk [Tue, 7 Jan 2003 15:55:21 +0000 (15:55 +0000)]
Moving things between two folders on the same volume but different group ownership bugfix.
If destination directory has SGID, group ownership for is changed while renam()ing.
This is very ugly hack, IMO should be implemented along with force gid/uid stuff.

21 years agoWhoops, 3.0.17 should read 3.1.17.
jmarcus [Sun, 5 Jan 2003 00:04:40 +0000 (00:04 +0000)]
Whoops, 3.0.17 should read 3.1.17.

21 years agoAdd a note about README.cnid.
jmarcus [Sat, 4 Jan 2003 22:17:44 +0000 (22:17 +0000)]
Add a note about README.cnid.

21 years agoThere is no root INSTALL file. Also, we are now in Netatalk 1.6.
jmarcus [Sat, 4 Jan 2003 22:16:48 +0000 (22:16 +0000)]
There is no root INSTALL file.  Also, we are now in Netatalk 1.6.

21 years ago* Add Dan Wilga as a contributor
jmarcus [Sat, 4 Jan 2003 22:15:48 +0000 (22:15 +0000)]
* Add Dan Wilga as a contributor
* Update the version info to include 1.6
* Change my package maintainer email address to my FreeBSD.org address

21 years agoAdd a README.cnid which talks about what CNID is, and what it means to
jmarcus [Sat, 4 Jan 2003 22:14:03 +0000 (22:14 +0000)]
Add a README.cnid which talks about what CNID is, and what it means to
Netatalk.  It also includes Adrian's old developer notes for a rough
understanding of the whole process.

21 years ago* Remove some more references to DB3, and mention exactly which versions of BDB
jmarcus [Sat, 4 Jan 2003 21:53:39 +0000 (21:53 +0000)]
* Remove some more references to DB3, and mention exactly which versions of BDB
  we support as well as what is the current recommended version.
* Clean up the PAM documentation some to make it less Linux specific.

21 years agoChange all references to db3/DB3 to BDB. We now support Berkeley DB
jmarcus [Sat, 4 Jan 2003 21:41:48 +0000 (21:41 +0000)]
Change all references to db3/DB3 to BDB.  We now support Berkeley DB
3.0.17, 3.2.9, 3.3.11, 4.0.14, and 4.1.25.  This means that --with-db3 is
now --with-bdb.

21 years agoAdd a missing '|' operator.
jmarcus [Sat, 4 Jan 2003 20:52:15 +0000 (20:52 +0000)]
Add a missing '|' operator.

21 years agoFix a comment. We support BDB 3.x and 4.x.
jmarcus [Sat, 4 Jan 2003 20:51:11 +0000 (20:51 +0000)]
Fix a comment.  We support BDB 3.x and 4.x.

21 years agoClean up the code with astyle.
jmarcus [Sat, 4 Jan 2003 20:49:33 +0000 (20:49 +0000)]
Clean up the code with astyle.

21 years agoIt's a new year, so let's revive the ChangeLog. Mention that we now have
jmarcus [Sat, 4 Jan 2003 19:36:15 +0000 (19:36 +0000)]
It's a new year, so let's revive the ChangeLog.  Mention that we now have
DB 4.1.x support.

21 years agoAdd DB 4.1.x support. This is a first round. Please test this if you are
jmarcus [Sat, 4 Jan 2003 19:33:20 +0000 (19:33 +0000)]
Add DB 4.1.x support.  This is a first round.  Please test this if you are
using DB 4.1.x, and let me know if you have any problems.

21 years agoNo need to log the strerror() when the return value was "success".
srittau [Wed, 1 Jan 2003 13:19:24 +0000 (13:19 +0000)]
No need to log the strerror() when the return value was "success".

21 years agoafp_enumerate() decremente offspring count if a file is not in the reply packet....
didg [Mon, 23 Dec 2002 00:21:35 +0000 (00:21 +0000)]
afp_enumerate() decremente offspring count if a file is not in the reply packet. Help when
deleting folder with dangling symlinks.

21 years agoRemove a log message that may cause afpd to slow down tremendously.
jmarcus [Wed, 18 Dec 2002 00:17:03 +0000 (00:17 +0000)]
Remove a log message that may cause afpd to slow down tremendously.

21 years agopossible partiel fix for endless loop (broken pipe) and endless refresh.
didg [Sat, 14 Dec 2002 04:01:01 +0000 (04:01 +0000)]
possible partiel fix for endless loop (broken pipe)  and endless refresh.

21 years agoFixes to -signature option (it was ported from 1.5.5 and I've forgotten
rlewczuk [Sat, 7 Dec 2002 02:55:00 +0000 (02:55 +0000)]
Fixes to -signature option (it was ported from 1.5.5 and I've forgotten
some 1.6 specific things).

21 years agoConfigure option allowing to set a server signature manually. Useful when
rlewczuk [Sat, 7 Dec 2002 02:39:57 +0000 (02:39 +0000)]
Configure option allowing to set a server signature manually. Useful when
running multiple instances of afpd on one machine (eg. HA clusters).

21 years agoFix white space indentions of help strings.
srittau [Thu, 5 Dec 2002 11:16:33 +0000 (11:16 +0000)]
Fix white space indentions of help strings.

21 years agoEnable file name mangling by default if did scheme == cnid.
srittau [Wed, 4 Dec 2002 18:33:39 +0000 (18:33 +0000)]
Enable file name mangling by default if did scheme == cnid.

21 years ago- call SIGHUP signal handler only once for worker process
didg [Wed, 4 Dec 2002 10:59:36 +0000 (10:59 +0000)]
- call SIGHUP signal handler only once for worker process
- check attention, tickle return value and die if the connection is closed

21 years agoRemove unnecessary -I$(top_srcdir)/include from CFLAGS.
srittau [Sun, 1 Dec 2002 01:33:39 +0000 (01:33 +0000)]
Remove unnecessary -I$(top_srcdir)/include from CFLAGS.

21 years agoInstall stuff into libexecdir, instead of sbindir.
srittau [Sun, 1 Dec 2002 01:31:29 +0000 (01:31 +0000)]
Install stuff into libexecdir, instead of sbindir.

21 years agoModified makecode to only generate one codepage at a time. The codepage to be
srittau [Sun, 1 Dec 2002 00:44:12 +0000 (00:44 +0000)]
Modified makecode to only generate one codepage at a time. The codepage to be
generated must be specified on the command line.

Adapted Makefile.am accordingly.

This ensures that all codepages are listed in Makefile.am, and it is IMO
a cleaner solution.

21 years agoAdded maccode.koi8-r to the generated files.
srittau [Sun, 1 Dec 2002 00:28:18 +0000 (00:28 +0000)]
Added maccode.koi8-r to the generated files.

21 years agotype is four bytes, and add Flash source .fla
didg [Sat, 30 Nov 2002 10:25:35 +0000 (10:25 +0000)]
type is four bytes, and add Flash source .fla

21 years agofile descriptor leak if the header is bad. Increment ad_hf.adf_refcount _before_
didg [Tue, 26 Nov 2002 18:48:23 +0000 (18:48 +0000)]
file descriptor leak if the header is bad. Increment ad_hf.adf_refcount _before_
ad_close not after.

21 years agofix ::
didg [Tue, 26 Nov 2002 08:22:37 +0000 (08:22 +0000)]
fix ::

21 years agoAFP 3.x pad for cleartext login, getsession token len is 4 bytes in specs seems
didg [Mon, 25 Nov 2002 09:42:13 +0000 (09:42 +0000)]
AFP 3.x pad for cleartext login, getsession token len is 4 bytes in specs seems
to be 2 in capture.

21 years agoCheck STDOUT to see if it's a terminal rather than STDIN.
jmarcus [Mon, 25 Nov 2002 01:33:02 +0000 (01:33 +0000)]
Check STDOUT to see if it's a terminal rather than STDIN.

Submitted by: Tom Kacvinsky

21 years ago1.6cvs -> 1.7cvs
srittau [Fri, 15 Nov 2002 17:19:08 +0000 (17:19 +0000)]
1.6cvs -> 1.7cvs

21 years agoRemoved the --with-catsearch configure option. (FPCatSearch is now always
srittau [Fri, 15 Nov 2002 10:59:11 +0000 (10:59 +0000)]
Removed the --with-catsearch configure option. (FPCatSearch is now always
enabled.)

21 years agoUse a makefile variable instead of a shell variable.
srittau [Thu, 14 Nov 2002 18:06:29 +0000 (18:06 +0000)]
Use a makefile variable instead of a shell variable.

21 years agoRemove support for flock locks.
srittau [Thu, 14 Nov 2002 17:21:23 +0000 (17:21 +0000)]
Remove support for flock locks.

21 years agoRemoved support for flock locks.
srittau [Thu, 14 Nov 2002 17:18:32 +0000 (17:18 +0000)]
Removed support for flock locks.

21 years agoRemove flock lock support.
srittau [Thu, 14 Nov 2002 17:15:22 +0000 (17:15 +0000)]
Remove flock lock support.

21 years agoRemove an #error if flock locks are enabled.
srittau [Thu, 14 Nov 2002 17:13:45 +0000 (17:13 +0000)]
Remove an #error if flock locks are enabled.

21 years agoFix some errno assignments (== vs. =).
srittau [Thu, 14 Nov 2002 17:11:54 +0000 (17:11 +0000)]
Fix some errno assignments (== vs. =).

21 years agoWarning fixes.
srittau [Thu, 14 Nov 2002 17:09:38 +0000 (17:09 +0000)]
Warning fixes.

21 years agocommented out labels within the static definition of several variables so Tru64 is...
sibaz [Fri, 8 Nov 2002 16:58:32 +0000 (16:58 +0000)]
commented out labels within the static definition of several variables so Tru64 is happy

21 years agoFix the problem where two directories with the same name differing
pooba53 [Tue, 5 Nov 2002 18:47:43 +0000 (18:47 +0000)]
Fix the problem where two directories with the same name differing
only in case confuses the Mac Finder.

21 years agobugfix AFP 3.1
didg [Tue, 29 Oct 2002 00:28:45 +0000 (00:28 +0000)]
bugfix AFP 3.1

21 years agorenamedir() return success after rename() even if we can't open .Parent.
didg [Tue, 29 Oct 2002 00:27:42 +0000 (00:27 +0000)]
renamedir() return success after rename() even if we can't open .Parent.

21 years agobugfix: set defextmap *after* realloc and sort.
didg [Sat, 26 Oct 2002 16:39:42 +0000 (16:39 +0000)]
bugfix: set defextmap *after* realloc and sort.

21 years agoprevious change to filedir.c was C99 only.
didg [Fri, 25 Oct 2002 11:26:49 +0000 (11:26 +0000)]
previous change to filedir.c was C99 only.

21 years agolong name an utf8 name in the same query (copy the same name for now). More
didg [Fri, 25 Oct 2002 11:10:46 +0000 (11:10 +0000)]
long name an utf8 name in the same query (copy the same name for now). More
offspring book keeping.

21 years agoAdd some more ignorable items.
jmarcus [Sun, 20 Oct 2002 18:28:47 +0000 (18:28 +0000)]
Add some more ignorable items.

21 years agoAdd my recent changes.
jmarcus [Sun, 20 Oct 2002 16:42:09 +0000 (16:42 +0000)]
Add my recent changes.

21 years agoCOPYRIGHT.mtab was removed.
srittau [Sun, 20 Oct 2002 13:43:00 +0000 (13:43 +0000)]
COPYRIGHT.mtab was removed.