diff options
author | Matthias Clasen <mclasen@redhat.com> | 2012-06-29 16:36:06 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2012-06-29 16:36:06 -0400 |
commit | d5ad568d624162282ebfae741bb18011e907eb0b (patch) | |
tree | ba3dad02eb29c3ab1c2543caf3120c229aa8d230 /programs/gvfs-save.c | |
parent | 1a20e31a1660b1e51efc3a1bb2bb9044af209d3d (diff) | |
download | gvfs-d5ad568d624162282ebfae741bb18011e907eb0b.tar.gz |
gvfs-save: use - instead of _ in long options
The option --print_etag was misnamed. Now it is --print-etag.
Diffstat (limited to 'programs/gvfs-save.c')
-rw-r--r-- | programs/gvfs-save.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/gvfs-save.c b/programs/gvfs-save.c index bc7ed9b5..4b8322a7 100644 --- a/programs/gvfs-save.c +++ b/programs/gvfs-save.c @@ -44,7 +44,7 @@ static GOptionEntry entries[] = { "create", 'c', 0, G_OPTION_ARG_NONE, &create, N_("Only create if not existing"), NULL }, { "append", 'a', 0, G_OPTION_ARG_NONE, &append, N_("Append to end of file"), NULL }, { "private", 'p', 0, G_OPTION_ARG_NONE, &priv, N_("When creating, restrict access to the current user"), NULL }, - { "print_etag", 'v', 0, G_OPTION_ARG_NONE, &print_etag, N_("Print new etag at end"), NULL }, + { "print-etag", 'v', 0, G_OPTION_ARG_NONE, &print_etag, N_("Print new etag at end"), NULL }, { "etag", 'e', 0, G_OPTION_ARG_STRING, &etag, N_("The etag of the file being overwritten"), N_("ETAG") }, { NULL } }; |