| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Subversion
Revision: 32928
Author: arfrever
Date: 05 Sep 2008 10:31:06
Changes:Use svn_opt_print_help3() instead of deprecated svn_opt_print_help().
* subversion/svnserve/main.c
(version):
* subversion/svnversion/main.c
(version): Use svn_opt_print_help3() instead of deprecated
svn_opt_print_help().
| ... | ...@@ -2,7 +2,7 @@ | |
| 2 | 2 | * main.c : Main control function for svnserve |
| 3 | 3 | * |
| 4 | 4 | * ==================================================================== |
| 5 | * Copyright (c) 2000-2007 CollabNet. All rights reserved. | |
| 5 | * Copyright (c) 2000-2008 CollabNet. All rights reserved. | |
| 6 | 6 | * |
| 7 | 7 | * This software is licensed as described in the file COPYING, which |
| 8 | 8 | * you should have received as part of this distribution. The terms |
| ... | ...@@ -259,8 +259,8 @@ | |
| 259 | 259 | _("\nCyrus SASL authentication is available.\n")); |
| 260 | 260 | #endif |
| 261 | 261 | |
| 262 | return svn_opt_print_help(NULL, "svnserve", TRUE, FALSE, version_footer->data, | |
| 263 | NULL, NULL, NULL, NULL, pool); | |
| 262 | return svn_opt_print_help3(NULL, "svnserve", TRUE, FALSE, version_footer->data, | |
| 263 | NULL, NULL, NULL, NULL, NULL, pool); | |
| 264 | 264 | } |
| 265 | 265 | |
| 266 | 266 |
| ... | ...@@ -29,8 +29,8 @@ | |
| 29 | 29 | static svn_error_t * |
| 30 | 30 | version(apr_pool_t *pool) |
| 31 | 31 | { |
| 32 | return svn_opt_print_help(NULL, "svnversion", TRUE, FALSE, NULL, NULL, | |
| 33 | NULL, NULL, NULL, pool); | |
| 32 | return svn_opt_print_help3(NULL, "svnversion", TRUE, FALSE, NULL, NULL, | |
| 33 | NULL, NULL, NULL, NULL, pool); | |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | static void |