log toys/other/losetup.c @ 1727:c0ef9b7976f0 draft

age author description
Thu, 01 Jan 2015 16:59:35 -0600 Rob Landley Switch a lot of strncpy() calls to xstrncpy(). draft
Thu, 09 Oct 2014 13:43:32 -0500 Rob Landley Various bugfixes (mostly resource leaks) from Ashwini Sharma's static analysis, plus occasional tweak by me while reviewing them. draft
Wed, 30 Jul 2014 19:22:55 -0500 Rob Landley As long as I had to write xabspath(), no point in wrapping realpath(). draft
Thu, 29 May 2014 06:29:12 -0500 Rob Landley Make "losetup /dev/loop0 filename" work. draft
Sun, 14 Apr 2013 21:43:22 -0500 Rob Landley Move guts of help command into show_help() in lib/help.c, with config TOYBOX_HELP controlling infrastructure.
Sun, 03 Feb 2013 17:04:36 -0600 Rob Landley Some older build environments don't have LOOP_CTL_GET_FREE or LOOP_SET_CAPACITY. Substitute constants so they can get the rest of losetup without a build break.
Mon, 14 Jan 2013 05:25:19 -0600 Rob Landley Silence deeply stupid gcc warning. (First non-declaration line of function: if (file) ffd = open(); at end of of function: if (file) close(ffd); "file" is an argument to the function and nothing else assigns to it. gcc warning on that close, "ffd may be used uninitialized!" _HOW_?)
Wed, 02 Jan 2013 02:00:35 -0600 Rob Landley Have error_msg() and friends set TT.exitval to 1 if it's still 0, clean out other places that were setting it that no longer need to.
Sun, 30 Dec 2012 21:35:01 -0600 Rob Landley Add losetup. (Who knows, it might even work.)