Unverified Commit 43fb06aa authored by Audrey Dutcher's avatar Audrey Dutcher Committed by Artemis Tosini
Browse files

freebsd: 14.0 -> 14.1

parent 24e28f29
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
  generateSplicesForMkScope,
  callPackage,
  attributePathToSplice ? [ "freebsd" ],
  branch ? "release/14.0.0",
  branch ? "release/14.1.0",
}:

let
+18 −0
Original line number Diff line number Diff line
diff --git a/sbin/fsck/fsck.c b/sbin/fsck/fsck.c
index 3757ed062ba5..584ada116386 100644
--- a/sbin/fsck/fsck.c
+++ b/sbin/fsck/fsck.c
@@ -375,11 +375,8 @@ checkfs(const char *pvfstype, const char *spec, const char *mntpt,
 			_exit(0);
 
 		/* Go find an executable. */
-		execvP(execbase, _PATH_SYSPATH, __DECONST(char * const *, argv));
-		if (spec)
-			warn("exec %s for %s in %s", execbase, spec, _PATH_SYSPATH);
-		else
-			warn("exec %s in %s", execbase, _PATH_SYSPATH);
+		execvp(execbase, __DECONST(char * const *, argv));
+		warn("exec %s not found", execbase);
 		_exit(1);
 		/* NOTREACHED */
 
Loading