Hi, It pw(8) is ignoring the -C switch in FreeBSD10. It worked fine in FreeBSD9.
I use this switch to specify an alternate pw.conf file in certain circumstances.
It appears that usr.sbin/pw/pw_user.c and usr.sbin/pw/pw_group.c have a typo in getopt:
should be
I patched my system and it worked as expected.
Where should I send the patch?
thank you
I use this switch to specify an alternate pw.conf file in certain circumstances.
It appears that usr.sbin/pw/pw_user.c and usr.sbin/pw/pw_group.c have a typo in getopt:
Code:
getopt(argc, argv, "Cq"))
Code:
getopt(argc, argv, "C:q"))
Where should I send the patch?
thank you