summaryrefslogtreecommitdiff
path: root/source3/utils/status.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2002-10-28 19:50:06 +0000
committerJelmer Vernooij <jelmer@samba.org>2002-10-28 19:50:06 +0000
commit66946a667ddcdb766e9af88a435fdba58288f7d0 (patch)
treee14ab960940d7f1d4e61bdbf8e8e7d778ef269e5 /source3/utils/status.c
parent9b6cd7db775891d94f0b7358cb4b4bd0bfd90e53 (diff)
downloadsamba-66946a667ddcdb766e9af88a435fdba58288f7d0.tar.gz
samba-66946a667ddcdb766e9af88a435fdba58288f7d0.tar.bz2
samba-66946a667ddcdb766e9af88a435fdba58288f7d0.zip
sync with head
(This used to be commit 245e2cae251382b2f638517e3902413ddac2226a)
Diffstat (limited to 'source3/utils/status.c')
-rw-r--r--source3/utils/status.c45
1 files changed, 15 insertions, 30 deletions
diff --git a/source3/utils/status.c b/source3/utils/status.c
index 7c2381099d..c84f8c267a 100644
--- a/source3/utils/status.c
+++ b/source3/utils/status.c
@@ -35,8 +35,6 @@
#include "includes.h"
-extern BOOL AllowDebugChange;
-
static pstring Ucrit_username = ""; /* added by OH */
static pid_t Ucrit_pid[100]; /* Ugly !!! */ /* added by OH */
static int Ucrit_MaxPid=0; /* added by OH */
@@ -547,30 +545,27 @@ static int traverse_sessionid(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf, vo
{
int c;
static int profile_only = 0;
- static char *new_debuglevel = NULL;
TDB_CONTEXT *tdb;
poptContext pc;
struct poptOption long_options[] = {
- {"processes", 'p', POPT_ARG_NONE, &processes_only},
- {"verbose", 'v', POPT_ARG_NONE, &verbose},
- {"locks", 'L', POPT_ARG_NONE, &locks_only},
- {"shares", 'S', POPT_ARG_NONE, &shares_only},
- {"conf", 's', POPT_ARG_STRING, 0, 's'},
- {"user", 'u', POPT_ARG_STRING, 0, 'u'},
- {"brief", 'b', POPT_ARG_NONE, &brief},
+ POPT_AUTOHELP
+ {"processes", 'p', POPT_ARG_NONE, &processes_only, 'p', "Show processes only" },
+ {"verbose", 'v', POPT_ARG_NONE, &verbose, 'v', "Be verbose" },
+ {"locks", 'L', POPT_ARG_NONE, &locks_only, 'L', "Show locks only" },
+ {"shares", 'S', POPT_ARG_NONE, &shares_only, 'S', "Show shares only" },
+ {"user", 'u', POPT_ARG_STRING, 0, 'u', "Switch to user" },
+ {"brief", 'b', POPT_ARG_NONE, &brief, 'b', "Be brief" },
#ifdef WITH_PROFILE
- {"profile", 'P', POPT_ARG_NONE, &profile_only},
+ {"profile", 'P', POPT_ARG_NONE, &profile_only, 'P', "Do profiling" },
#endif /* WITH_PROFILE */
- {"byterange", 'B', POPT_ARG_NONE, &show_brl},
+ {"byterange", 'B', POPT_ARG_NONE, &show_brl, 'B', "Include byte range locks"},
{ NULL, 0, POPT_ARG_INCLUDE_TABLE, popt_common_debug },
+ { NULL, 0, POPT_ARG_INCLUDE_TABLE, popt_common_configfile },
{ 0, 0, 0, 0}
};
-
setup_logging(argv[0],True);
- AllowDebugChange = False;
- DEBUGLEVEL = 0;
dbf = x_stderr;
if (getuid() != geteuid()) {
@@ -583,30 +578,20 @@ static int traverse_sessionid(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf, vo
while ((c = poptGetNextOpt(pc)) != EOF) {
switch (c) {
- case 's':
- pstrcpy(dyn_CONFIGFILE, poptGetOptArg(pc));
- break;
case 'u':
Ucrit_addUsername(poptGetOptArg(pc));
break;
- default:
- fprintf(stderr, "Usage: %s [-P] [-v] [-L] [-p] [-S] [-s configfile] [-u username] [-d debuglevel]\n", *argv);
- return (-1);
}
}
-
- if (!lp_load(dyn_CONFIGFILE,False,False,False)) {
- fprintf(stderr, "Can't load %s - run testparm to debug it\n", dyn_CONFIGFILE);
- return (-1);
- }
-
- if (new_debuglevel) {
- debug_parse_levels(new_debuglevel);
- }
if (verbose) {
d_printf("using configfile = %s\n", dyn_CONFIGFILE);
}
+
+ if (!lp_load(dyn_CONFIGFILE,False,False,False)) {
+ fprintf(stderr, "Can't load %s - run testparm to debug it\n", dyn_CONFIGFILE);
+ return (-1);
+ }
if (profile_only) {
return profile_dump();