replace log_dbg_cmdline

This commit is contained in:
wbaumann 2010-11-03 21:45:37 +00:00
parent 7e5fa7fe7d
commit c01f625e79
3 changed files with 24 additions and 31 deletions

View File

@ -8,8 +8,8 @@ ChangeLog for davfs2
Replace xxfsent functions by xxmntent functions. Replace xxfsent functions by xxmntent functions.
Don't compare commandline and fstab for options Don't compare commandline and fstab for options
'user' and 'users', only check fstab for presence. 'user' and 'users', only check fstab for presence.
* mount_davfs.c, log_dbg_cmdline: * mount_davfs.h, mount_davfs.c:
Replace argz. Replace log_dbg_cmdline.


2010-08-07 Werner Baumann (werner.baumann@onlinehome.de) 2010-08-07 Werner Baumann (werner.baumann@onlinehome.de)
* webdav.c: * webdav.c:

View File

@ -190,9 +190,6 @@ ignore_home(const char *name, const char *ignore_list);
static dav_args * static dav_args *
new_args(void); new_args(void);


static void
log_dbg_cmdline(int argc, char *argv[]);

static void static void
log_dbg_config(char *argv[], dav_args *args); log_dbg_config(char *argv[], dav_args *args);


@ -935,9 +932,23 @@ is_mounted(void)
static dav_args * static dav_args *
parse_commandline(int argc, char *argv[]) parse_commandline(int argc, char *argv[])
{ {
log_dbg_cmdline(argc, argv);
dav_args *args = new_args(); dav_args *args = new_args();


size_t len = argc;
int i;
for (i = 0; i < argc; i++)
len += strlen(argv[i]);
args->cmdline = malloc(len);
if (!args->cmdline) abort();
char *p = args->cmdline;
for (i = 0; i < argc - 1; i++) {
strcpy(p, argv[i]);
p += strlen(argv[i]);
*p = ' ';
p++;
}
strcpy(p, argv[argc - 1]);

char *short_options = "vwVho:"; char *short_options = "vwVho:";
static const struct option options[] = { static const struct option options[] = {
{"version", no_argument, NULL, 'V'}, {"version", no_argument, NULL, 'V'},
@ -973,7 +984,7 @@ parse_commandline(int argc, char *argv[])
o = getopt_long(argc, argv, short_options, options, NULL); o = getopt_long(argc, argv, short_options, options, NULL);
} }


int i = optind; i = optind;
switch (argc - i) { switch (argc - i) {
case 0: case 0:
case 1: case 1:
@ -1418,6 +1429,8 @@ decode_octal(const char *s)
static void static void
delete_args(dav_args *args) delete_args(dav_args *args)
{ {
if (args->cmdline)
free(args->cmdline);
if (args->dav_user) if (args->dav_user)
free(args->dav_user); free(args->dav_user);
if (args->dav_group) if (args->dav_group)
@ -1734,6 +1747,7 @@ new_args(void)


dav_args *args = ne_malloc(sizeof(*args)); dav_args *args = ne_malloc(sizeof(*args));


args->cmdline = NULL;
args->dav_user = ne_strdup(DAV_USER); args->dav_user = ne_strdup(DAV_USER);
args->dav_group = ne_strdup(DAV_GROUP); args->dav_group = ne_strdup(DAV_GROUP);
args->ignore_home = NULL; args->ignore_home = NULL;
@ -1825,33 +1839,11 @@ new_args(void)
} }




static void
log_dbg_cmdline(int argc, char *argv[])
{
size_t len = argc;
int i;
for (i = 0; i < argc; i++)
len += strlen(argv[i]);
char *cmdline = malloc(len);
if (!cmdline) abort();

char *p = cmdline;
for (i = 0; i < argc - 1; i++) {
strcpy(p, argv[i]);
p += strlen(argv[i]);
*p = ' ';
p++;
}
strcpy(p, argv[argc - 1]);

syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG), cmdline);
free(cmdline);
}


static void static void
log_dbg_config(char *argv[], dav_args *args) log_dbg_config(char *argv[], dav_args *args)
{ {
syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG),
"%s", args->cmdline);
syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG), syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG),
"Configuration:"); "Configuration:");
syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG), syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG),

View File

@ -31,6 +31,7 @@
Some data will be copied into global or local variables to be available in Some data will be copied into global or local variables to be available in
daemon mode. The rest will be freed when forking into daemon mode. */ daemon mode. The rest will be freed when forking into daemon mode. */
typedef struct { typedef struct {
char *cmdline;
char *dav_user; /* System config file */ char *dav_user; /* System config file */
char *dav_group; /* System config file */ char *dav_group; /* System config file */
char *ignore_home; /* System config file */ char *ignore_home; /* System config file */