Re: Small bug in chown and chgrp ?

2000-03-08 Thread David O'Brien

On Mon, Mar 06, 2000 at 08:36:08PM +0100, Dave Boers wrote:
 It seems that chown's behavior is inconsistent with both the usage message
 and the man page. The same goes for chgrp. 

Fixed!  I have no idea how I managed to not commit all the "-v" code.
 
-- 
-- David([EMAIL PROTECTED])


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Small bug in chown and chgrp ?

2000-03-06 Thread Dave Boers

Hi all, 

I've been bitten by the following: 

44 relativity ~ % chown -v djb:wheel test
chown: illegal option -- v
usage: chown [-R [-H | -L | -P]] [-f] [-h] [-v] owner[:group] file ...
   chown [-R [-H | -L | -P]] [-f] [-h] [-v] :group file ...
   chgrp [-R [-H | -L | -P]] [-f] [-h] [-v] group file ...

Where "test" is an ordinary directory. 

It seems that chown's behavior is inconsistent with both the usage message
and the man page. The same goes for chgrp. 

Regards, 

Dave Boers. 

-- 
  Dave Boers  djb @ relativity . student . utwente . nl 
  Don't let your schooling interfere with your education. (Mark Twain)


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Small bug in chown and chgrp ?

2000-03-06 Thread Alfred Perlstein

* Dave Boers [EMAIL PROTECTED] [000306 12:08] wrote:
 Hi all, 
 
 I've been bitten by the following: 
 
 44 relativity ~ % chown -v djb:wheel test
 chown: illegal option -- v
 usage: chown [-R [-H | -L | -P]] [-f] [-h] [-v] owner[:group] file ...
chown [-R [-H | -L | -P]] [-f] [-h] [-v] :group file ...
chgrp [-R [-H | -L | -P]] [-f] [-h] [-v] group file ...
 
 Where "test" is an ordinary directory. 
 
 It seems that chown's behavior is inconsistent with both the usage message
 and the man page. The same goes for chgrp. 

have you deleted your stale copies of chown/chgrp?  hint look in 
/bin /sbin /usr/bin /usr/sbin and make sure the old ones aren't
"in the way".

-Alfred


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Small bug in chown and chgrp ?

2000-03-06 Thread Arindum Mukerji

* Dave Boers ([EMAIL PROTECTED]) [000306 13:36]:
 chown: illegal option -- v
 usage: chown [-R [-H | -L | -P]] [-f] [-h] [-v] owner[:group] file ...
chown [-R [-H | -L | -P]] [-f] [-h] [-v] :group file ...
chgrp [-R [-H | -L | -P]] [-f] [-h] [-v] group file ...
 

A simple patch:

--- chown.c.1.14Sat Nov 27 13:25:07 1999
+++ chown.c Mon Mar  6 13:42:41 2000
@@ -86,7 +86,7 @@
ischown = myname[2] == 'o';
 
Hflag = Lflag = Pflag = hflag = 0;
-   while ((ch = getopt(argc, argv, "HLPRfh")) != -1)
+   while ((ch = getopt(argc, argv, "HLPRfhv")) != -1)
switch (ch) {
case 'H':
Hflag = 1;
@@ -108,6 +108,9 @@
break;
case 'h':
hflag = 1;
+   break;
+   case 'v':
+   vflag = 1;
break;
case '?':
default:

Regards,
-- 
Arindum


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Small bug in chown and chgrp ?

2000-03-06 Thread Dave Boers

It is rumoured that Alfred Perlstein had the courage to say:
 have you deleted your stale copies of chown/chgrp?  hint look in 
 /bin /sbin /usr/bin /usr/sbin and make sure the old ones aren't
 "in the way".

Yes I have. Because I got a new disk, I did a fresh install of -current a
few weeks ago. Well after the change of chown/chgrp from /bin and /sbin to
/usr/bin and /usr/sbin. I double checked to make sure and the only versions
of chown/chgrp are the ones in /usr/sbin and /usr/bin respectively. 

Regards, 

Dave Boers. 

-- 
  Dave Boers  djb @ relativity . student . utwente . nl 
  Don't let your schooling interfere with your education. (Mark Twain)


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message