search for: poptcontext

Displaying 4 results from an estimated 4 matches for "poptcontext".

Did you mean: hostcontext
2002 Jan 07
2
rsync-2.5.1 / popt patches
...@out@*/ const char *** argvPtr); int poptParseArgvString(const char * s, /*@out@*/ int * argcPtr, /*@out@*/ const char *** argvPtr); -/*@observer@*/ const char *const poptStrerror(const int error); +/*@observer@*/ const char * poptStrerror(const int error); void poptSetExecPath(poptContext con, const char * path, int allowAbsolute); void poptPrintHelp(poptContext con, FILE * f, int flags); void poptPrintUsage(poptContext con, FILE * f, int flags); EAGLE> type lcl_popt:popthelp.gdiff --- ref_popt:popthelp.c Fri Feb 23 19:32:22 2001 +++ lcl_popt:popthelp.c Sun Jan 6 08:42:42...
2004 Feb 20
1
[patch] fix for "refuse options" ignored due to popt
Hello, I found the reason why "refuse options" is ignored on the server side. When then 5th argument (int val) in the poptOption struct is set to zero, the parsing function poptGetNextOpt() just continues with the next arg, without returning. So check_refuse_options() is simply not called in such cases. The attached patch makes "refuse options" work with checksum and
2004 Apr 10
0
patches for copying atimes
..."Trivial file listing program for portably checking rsync\n"); +} int main(int argc, char *argv[]) { - if (argc < 2) { - fprintf (stderr, "usage: " PROGRAM " DIR ...\n" - "Trivial file listing program for portably checking rsync\n"); + poptContext pc; + const char **extra_args; + char err_buf[100]; + int opt; + + pc = poptGetContext(PROGRAM, argc, (const char **)argv, + long_options, 0); + while ((opt = poptGetNextOpt(pc)) != -1) { + switch (opt) { +...
2004 Apr 20
1
improved atime patch
..."Trivial file listing program for portably checking rsync\n"); +} int main(int argc, char *argv[]) { - if (argc < 2) { - fprintf (stderr, "usage: " PROGRAM " DIR ...\n" - "Trivial file listing program for portably checking rsync\n"); + poptContext pc; + const char **extra_args; + char err_buf[100]; + int opt; + + pc = poptGetContext(PROGRAM, argc, (const char **)argv, + long_options, 0); + while ((opt = poptGetNextOpt(pc)) != -1) { + switch (opt) { +...