From: bfernhomberg Date: Tue, 18 Nov 2003 21:49:41 +0000 (+0000) Subject: MFH: mswindows option implictly defines usedots [Sam Noble] X-Git-Tag: netatalk-1-6-4rc1~11 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=netatalk.git;a=commitdiff_plain;h=ba5bfdc2f1eb1d1906f6883a1ad7dc731aeaf5a3 MFH: mswindows option implictly defines usedots [Sam Noble] --- diff --git a/etc/afpd/volume.c b/etc/afpd/volume.c index f76b9447..1e1c7828 100644 --- a/etc/afpd/volume.c +++ b/etc/afpd/volume.c @@ -1,5 +1,5 @@ /* - * $Id: volume.c,v 1.36.2.6 2003-09-26 13:24:06 didg Exp $ + * $Id: volume.c,v 1.36.2.7 2003-11-18 21:49:41 bfernhomberg Exp $ * * Copyright (c) 1990,1993 Regents of The University of Michigan. * All Rights Reserved. See COPYRIGHT. @@ -355,7 +355,7 @@ static void volset(struct vol_option *options, char *volname, int vlen, if (strcasecmp(p, "prodos") == 0) options[VOLOPT_FLAGS].i_value |= AFPVOL_A2VOL; else if (strcasecmp(p, "mswindows") == 0) { - options[VOLOPT_FLAGS].i_value |= AFPVOL_MSWINDOWS; + options[VOLOPT_FLAGS].i_value |= (AFPVOL_MSWINDOWS | AFPVOL_USEDOTS); if (!options[VOLOPT_CODEPAGE].c_value) options[VOLOPT_CODEPAGE].c_value = get_codepage_path(nlspath, MSWINDOWS_CODEPAGE);