Deleted Added
full compact
27c27
< # $FreeBSD: head/usr.sbin/bsdconfig/share/media/directory.subr 252987 2013-07-07 18:51:44Z dteske $
---
> # $FreeBSD: head/usr.sbin/bsdconfig/share/media/directory.subr 253333 2013-07-14 03:08:52Z dteske $
118c118
< # f_media_get_directory $device $file [$probe_only]
---
> # f_media_get_directory $device $file [$probe_type]
121,122c121,123
< # cat(1). If $probe_only is present and non-NULL, returns success if $file
< # exists.
---
> # cat(1). If $probe_type is present and non-NULL, returns success if $file
> # exists. If $probe_type is equal to $PROBE_SIZE, prints the size of $file in
> # bytes to standard-out.
126c127
< local dev="$1" file="$2" probe_only="$3" path
---
> local dev="$1" file="$2" probe_type="$3" path
128,129c129,130
< f_dprintf "f_media_get_directory: dev=[%s] file=[%s] probe_only=%s" \
< "$dev" "$file" "$probe_only"
---
> f_dprintf "f_media_get_directory: dev=[%s] file=[%s] probe_type=%s" \
> "$dev" "$file" "$probe_type"
132c133
< f_media_generic_get "$path" "$file" "$probe_only"
---
> f_media_generic_get "$path" "$file" "$probe_type"