]> arthur.barton.de Git - netatalk.git/commitdiff
Adjust volnamelen default to 80. From HAT
authorfranklahm <franklahm>
Thu, 26 Mar 2009 18:21:40 +0000 (18:21 +0000)
committerfranklahm <franklahm>
Thu, 26 Mar 2009 18:21:40 +0000 (18:21 +0000)
etc/afpd/afp_options.c

index 414629b5e3008c50c04aad18a5dfdc6dca0ff29c..380f31b23d5103a29c18f6b14d6ae12b7a8ec251 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: afp_options.c,v 1.39 2009-03-16 13:59:12 franklahm Exp $
+ * $Id: afp_options.c,v 1.40 2009-03-26 18:21:40 franklahm Exp $
  *
  * Copyright (c) 1997 Adrian Sun (asun@zoology.washington.edu)
  * Copyright (c) 1990,1993 Regents of The University of Michigan.
@@ -186,7 +186,7 @@ void afp_options_init(struct afp_options *options)
     options->unixcodepage = "LOCALE";
     options->maccharset = CH_MAC;
     options->maccodepage = "MAC_ROMAN";
-    options->volnamelen = 31; /* Conservative default. 10.4/10.5 can handle up to 80 */
+    options->volnamelen = 80; /* spec: 255, 10.1: 73, 10.4/10.5: 80 */
     options->ntdomain = NULL;
     options->ntseparator = NULL;
 }