From: Jameson Rollins Date: Tue, 19 Oct 2010 02:23:04 +0000 (-0400) Subject: fix back to integer indexing in process_authorized_user_ids X-Git-Tag: monkeysphere_0.34-1~1^2~9 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7ad88e0d97739cf1fd7912106e196a0ff8ccc511;p=monkeysphere.git fix back to integer indexing in process_authorized_user_ids --- diff --git a/src/share/common b/src/share/common index 740ceb2..54c1b2a 100644 --- a/src/share/common +++ b/src/share/common @@ -909,7 +909,7 @@ process_authorized_user_ids() { fi ;; (*) - nline=$((nline+1)) + ((nline++)) userIDs[${nline}]="$line" unset koptions[${nline}] || true ;;