fix for a comment or two that got scrambled at some point.
authorChris Koeritz <fred@gruntose.com>
Fri, 12 Jun 2015 16:04:48 +0000 (12:04 -0400)
committerChris Koeritz <fred@gruntose.com>
Fri, 12 Jun 2015 16:04:48 +0000 (12:04 -0400)
scripts/core/functions.sh

index cdfe32790fa0106a1e55a778fd1f7b2e06e6d604..0f185ee5288710a4657fc0ae05ad25b1601f2695 100644 (file)
@@ -113,7 +113,7 @@ if [ -z "$skip_all" ]; then
     local PID_DUMP="$(mktemp "$TMP/zz_pidlist.XXXXXX")"
     local -a PIDS_SOUGHT
     if [ "$OS" == "Windows_NT" ]; then
-      # needs to be a windows format filename for 'type' to work.
+      # windows case has some odd gyrations to get the user list.
       if [ ! -d c:/tmp ]; then
         mkdir c:/tmp
       fi
@@ -129,6 +129,7 @@ if [ -z "$skip_all" ]; then
         flag='//c'
       fi
       # we 'type' the file to get rid of the unicode result from wmic.
+      # needs to be a windows format filename for 'type' to work.
       cmd $flag type "$tmppid" >$PID_DUMP
       \rm "$tmppid"
       local appropriate_pattern='s/^.*[[:space:]][[:space:]]*\([0-9][0-9]*\) *\$/\1/p'