X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=dirname.c;h=8313e99c692c26af3ec34578da561b08acdcde2e;hb=e5f39576650933770153e82c63a46f27fcd72b0e;hp=ceb750cb8a81093af6c3442b921281919a7f89a6;hpb=3e856ce428cabaf6c8d99a2374a1f9a4a05db5f0;p=oweals%2Fbusybox.git diff --git a/dirname.c b/dirname.c index ceb750cb8..8313e99c6 100644 --- a/dirname.c +++ b/dirname.c @@ -2,7 +2,7 @@ /* * Mini dirname implementation for busybox * - * Copyright (C) 2000 by Lineo, inc. + * Copyright (C) 1999,2000,2001 by Lineo, inc. * Written by Erik Andersen , * * This program is free software; you can redistribute it and/or modify @@ -20,25 +20,31 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ -#include "busybox.h" + +/* getopt not needed */ + #include +#include +#include +#include "busybox.h" extern int dirname_main(int argc, char **argv) { char* s; if ((argc < 2) || (**(argv + 1) == '-')) - usage(dirname_usage); + show_usage(); argv++; s=*argv+strlen(*argv)-1; - while (s && *s == '/') { - *s = '\0'; - s=*argv+strlen(*argv)-1; + while (s != *argv && *s == '/') { + *s-- = '\0'; } s = strrchr(*argv, '/'); - if (s && *s) + if (s != NULL && s == *argv) + s[1] = '\0'; + else if (s != NULL) *s = '\0'; - printf("%s\n", (s)? *argv : "."); + puts(s ? *argv : "."); return EXIT_SUCCESS; }