Displaying 1 result from an estimated 1 matches for "opt_user_specifi".
Did you mean:
  opt_user_specified
  
2008 Mar 11
2
$ char in password
...d some printf in net.c:
=======================================================
 int main(int argc, const char **argv)
{
  ......
        while((opt = poptGetNextOpt(pc)) != -1) {
                switch (opt) {
                        ......
                case 'U':
                        opt_user_specified = True;
                        d_fprintf(stderr, "%s(): opt_user_name is %s\n", __FUNCTION__, opt_user_name); //xq
                        opt_user_name = SMB_STRDUP(opt_user_name);
                        p = strchr(opt_user_name,'%');
                        if (p) {...