search for: 166631f

Displaying 1 result from an estimated 1 matches for "166631f".

Did you mean: 16631
2011 Jan 07
1
[RFC/PATCH] ssh: config directive to modify the local environment
...+ eq[len - 1] = '\0'; + eq++; + len -= 2; + } + + /* Allow to unset when */ + if (mod->operation && len == 0) + return 0; + + mod->name = xstrdup(cp); + mod->value = xstrdup(eq); + + xfree(p); + + return 1; +} diff --git a/readconf.h b/readconf.h index ee160df..166631f 100644 --- a/readconf.h +++ b/readconf.h @@ -25,6 +25,13 @@ typedef struct { int connect_port; /* Port to connect on connect_host. */ int allocated_port; /* Dynamically allocated listen port */ } Forward; +/* Data structure for representing a local env modification. */ + +typedef st...