diff options
author | Eric Andersen | 1999-10-20 22:08:37 +0000 |
---|---|---|
committer | Eric Andersen | 1999-10-20 22:08:37 +0000 |
commit | c49960189a04b73e033016bd0f43fbb950f800e1 (patch) | |
tree | 6447b860dad6dd3a463547fa048a4c635d8864c8 /chmod_chown_chgrp.c | |
parent | 887991c78a1e62beee123d58f6a47f93278f03c9 (diff) | |
download | busybox-c49960189a04b73e033016bd0f43fbb950f800e1.zip busybox-c49960189a04b73e033016bd0f43fbb950f800e1.tar.gz |
Fixed up copyright notices and such
Diffstat (limited to 'chmod_chown_chgrp.c')
-rw-r--r-- | chmod_chown_chgrp.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chmod_chown_chgrp.c b/chmod_chown_chgrp.c index 85ba247..8bda068 100644 --- a/chmod_chown_chgrp.c +++ b/chmod_chown_chgrp.c @@ -1,7 +1,9 @@ /* * Mini chown/chmod/chgrp implementation for busybox * - * Copyright (C) 1998 by Erik Andersen <andersee@debian.org> + * + * Copyright (C) 1999 by Lineo, inc. + * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -107,7 +109,7 @@ int chmod_chown_chgrp_main(int argc, char **argv) } else { /* Find the selected group */ - if ( whichApp==CHGRP_APP && groupName ) { + if ( whichApp==CHGRP_APP ) { groupName = *argv; gid = my_getgrnam(groupName); if (gid == -1) |