Displaying 1 result from an estimated 1 matches for "adehmnj".
1999 Sep 21
0
[patch] fixing scope id problems
...1999
X@@ -20,6 +20,7 @@
X #include "includes.h"
X
X extern pstring myhostname;
X+extern pstring scope;
X extern pstring global_myname;
X extern int DEBUGLEVEL;
X
X@@ -276,7 +277,7 @@
X char *old_passwd = NULL;
X char *remote_machine = NULL;
X
X- while ((ch = getopt(argc, argv, "adehmnj:r:sR:D:U:")) != EOF) {
X+ while ((ch = getopt(argc, argv, "adehmnj:r:sR:D:U:C:")) != EOF) {
X switch(ch) {
X case 'a':
X add_user = True;
X@@ -316,6 +317,9 @@
X break;
X case 'U':
X user_name = optarg;
X+ break;
X+ case 'C':
X+ pstrcpy(scop...