gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r2002 - in GNUnet: doc/man src/applications/fs/tools


From: grothoff
Subject: [GNUnet-SVN] r2002 - in GNUnet: doc/man src/applications/fs/tools
Date: Sun, 28 Aug 2005 03:24:20 -0700 (PDT)

Author: grothoff
Date: 2005-08-28 03:24:18 -0700 (Sun, 28 Aug 2005)
New Revision: 2002

Modified:
   GNUnet/doc/man/gnunet-insert.1
   GNUnet/src/applications/fs/tools/gnunet-insert.c
Log:
fix

Modified: GNUnet/doc/man/gnunet-insert.1
===================================================================
--- GNUnet/doc/man/gnunet-insert.1      2005-08-28 08:50:52 UTC (rev 2001)
+++ GNUnet/doc/man/gnunet-insert.1      2005-08-28 10:24:18 UTC (rev 2002)
@@ -93,8 +93,8 @@
 Even if using links to the .gnunet directory is generally permitted, make a 
copy of the file (disables symlinking even if it is possible).  When indexing a 
file, gnunet\-insert will create a copy of the file in the "share" directory of 
gnunetd.  If that directory happens to be on the local machine (i.e. gnunetd 
runs on localhost) then gnunet\-insert can instead just use a link.  This will 
not work over the network, if the file\-permissions do not allow gnunetd to 
read the file or if the file maybe changed afterwards.  Hence the default is to 
be inefficient and to make a copy.  With this option you can force 
gnunet\-insert to not make a link.  gnunet\-insert will fall back to creating a 
copy.
 
 .TP
-\fB\-d\fR, \fB\-\-direct\fR
-For a recursive upload, also create direct indexing information that will 
refer to files inside of directories immediately.  Without \-d, contents of 
directories can only be found via the directory itself.
+\fB\-D\fR, \fB\-\-direct\fR
+For a recursive upload, also create direct indexing information that will 
refer to files inside of directories immediately.  Without \-D, contents of 
directories can only be found via the directory itself.
 
 .TP
 \fB\-e\fR, \fB\-\-extract\fR

Modified: GNUnet/src/applications/fs/tools/gnunet-insert.c
===================================================================
--- GNUnet/src/applications/fs/tools/gnunet-insert.c    2005-08-28 08:50:52 UTC 
(rev 2001)
+++ GNUnet/src/applications/fs/tools/gnunet-insert.c    2005-08-28 10:24:18 UTC 
(rev 2002)
@@ -208,7 +208,7 @@
     { 'C', "copy", NULL,
       gettext_noop("even if gnunetd is running on the local machine, force the"
                   " creation of a copy instead of making a link to the GNUnet 
share directory") },
-    { 'd', "direct", NULL,
+    { 'D', "direct", NULL,
       gettext_noop("use libextractor to add additional direct references to 
directory entries") },
     { 'e', "extract", NULL,
       gettext_noop("print list of extracted keywords that would be used, but 
do not perform upload") },
@@ -277,7 +277,7 @@
       LONG_DEFAULT_OPTIONS,
       { "anonymity",     1, 0, 'a' },
       { "copy",          0, 0, 'C' },
-      { "direct",        0, 0, 'd' },
+      { "direct",        0, 0, 'D' },
       { "extract",       0, 0, 'e' },
       { "interval",      1, 0, 'i' },
       { "key",           1, 0, 'k' },
@@ -297,7 +297,7 @@
     };
     c = GNgetopt_long(argc,
                      argv,
-                     "a:c:CdehH:i:L:k:K:m:nN:p:P:RSt:T:u:vV",
+                     "a:c:CDehH:i:L:k:K:m:nN:p:P:RSt:T:u:vV",
                      long_options,
                      &option_index);
     if (c == -1)
@@ -326,7 +326,7 @@
                                         "DISABLE-SYMLINKING",
                                         "YES"));
       break;
-    case 'd':
+    case 'D':
       FREENONNULL(setConfigurationString("FS",
                                         "DIRECT-KEYWORDS",
                                         "YES"));





reply via email to

[Prev in Thread] Current Thread [Next in Thread]