start-stop-deamon is done
[oweals/busybox.git] / findutils / which.c
index 1e5e9eed5569bee54775b9b401e6a1f4c1312eb6..eec5fdbfb5d5c070e43f1ce950d8e3fa162b5d68 100644 (file)
@@ -2,8 +2,8 @@
 /*
  * Which implementation for busybox
  *
- * Copyright (C) 1999,2000,2001 by Lineo, inc.
- * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
+ * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
+ * Copyright (C) 1999,2000,2001 by Erik Andersen <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
@@ -54,15 +54,15 @@ extern int which_main(int argc, char **argv)
                found = 0;
                for (i = 0; i < count; i++) {
                        char *buf;
-                       buf = concat_path_file(buf, path_n);
-                       buf = concat_path_file(buf, *argv);
+                       buf = concat_path_file(path_n, *argv);
                        if (stat (buf, &filestat) == 0
                            && filestat.st_mode & S_IXUSR)
                        {
-                               printf ("%s\n", buf);
+                               puts(buf);
                                found = 1;
                                break;
                        }
+                       free(buf);
                        path_n += (strlen(path_n) + 1);
                }
                if (!found)