From 102666b9535793050a099b6bf988750e1fa3f9de Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Mon, 24 Feb 2014 21:16:18 -0500 Subject: src/oh-strip.sh: Use new output functions. --- diff --git a/src/oh-strip.sh b/src/oh-strip.sh index 1c21545..827c697 100644 --- a/src/oh-strip.sh +++ b/src/oh-strip.sh @@ -40,7 +40,7 @@ main() keep_debug='true' ;; ?) - ob_error "$(ob_get_msg 'bad_opt')" + oh_error "$(ob_get_msg 'bad_opt')" exit 1 ;; esac @@ -78,7 +78,7 @@ strip_so() file="${1}" debug='' - ob_info "$(ob_get_msg 'strip_so')" "${file}" + oh_info "$(ob_get_msg 'strip_so')" "${file}" if ${keep_debug}; then debug="$(keep_debug "${file}")" @@ -97,7 +97,7 @@ strip_exe() file="${1}" debug='' - ob_info "$(ob_get_msg 'strip_exe')" "${file}" + oh_info "$(ob_get_msg 'strip_exe')" "${file}" if ${keep_debug}; then debug="$(keep_debug "${file}")" @@ -115,7 +115,7 @@ strip_a() { file="${1}" - ob_info "$(ob_get_msg 'strip_a')" "${file}" + oh_info "$(ob_get_msg 'strip_a')" "${file}" ${STRIP} --strip-debug "${dir}/${file}" } -- cgit v0.9.1