yellowpattern

Results 31 comments of yellowpattern

``` diff --git a/src/df.c b/src/df.c index dd90f24..e7d2019 100644 --- a/src/df.c +++ b/src/df.c @@ -173,12 +180,18 @@ static int df_read(void) { char const *dev = (mnt_ptr->spec_device != NULL) ? mnt_ptr->spec_device :...

When is this fix going to be integrated into a release?

A workaround for this (and other similar tickets?) might be to have this in your openvpn configuration file: `status-version 1`

The problem is here - it doesn't handle a column that is a zero length string. An example row might be: CLIENT_LIST,laptop,1.1.1.1:55867,1.2.1.3,,50901554,547137427,Thu Feb 11 09:00:00 2021,1612994400,username,3493,0 ``` /* Helper function...

The key is here (from strtok's man page): The strtok() function breaks a string into a sequence of zero or more nonempty tokens. On the first call to strtok(), the...

A rewrite of the openvpn_strsplit function to look something like this is required: ``` /* Helper function * copy-n-pasted from common.c - changed delim to ",\t" */ static int openvpn_strsplit(char...

almost 2 months later and nothing has changed. Does this project need to be forked? I wonder if there was a decision to go to version 6 but there was...

12 months after this ticket was opened, what's the future here? Blocked by Travis-CI and the inability to find someone who can disable Travis-CI? If octo is the only one...

``` diff --git a/python2/pyinotify.py b/python2/pyinotify.py index d2f0816..47e2038 100755 --- a/python2/pyinotify.py +++ b/python2/pyinotify.py @@ -1244,6 +1244,7 @@ class Notifier: raise NotifierError(msg) log.debug('Event queue size: %d', queue_size) rsum = 0 # counter...

This also requires a documentation update (ugh!) but adding in returning the array should not impact any existing code - the returned array will just be ignored.