View | Details | Raw Unified | Return to bug 2350
Collapse All | Expand All

(-)a/contrib/ssh-copy-id (-2 / +1 lines)
Lines 207-213 populate_new_ids() { Link Here
207
  printf '%s: INFO: attempting to log in with the new key(s), to filter out any that are already installed\n' "$0" >&2
207
  printf '%s: INFO: attempting to log in with the new key(s), to filter out any that are already installed\n' "$0" >&2
208
  NEW_IDS=$(
208
  NEW_IDS=$(
209
    eval $GET_ID | {
209
    eval $GET_ID | {
210
      while read ID ; do
210
      while read ID || [[ -n $ID ]]; do
211
        printf '%s\n' "$ID" > $L_TMP_ID_FILE
211
        printf '%s\n' "$ID" > $L_TMP_ID_FILE
212
212
213
        # the next line assumes $PRIV_ID_FILE only set if using a single id file - this
213
        # the next line assumes $PRIV_ID_FILE only set if using a single id file - this
214
- 

Return to bug 2350