소스 검색

When copying a single file sync cp file and cp buf

master
Arun Prakash Jana 6 년 전
부모
커밋
0169232d9c
No known key found for this signature in database GPG 키 ID: A75979F35C080412
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. +8
    -0
      src/nnn.c

+ 8
- 0
src/nnn.c 파일 보기

@@ -2975,6 +2975,10 @@ nochange:
} else if (cfg.quote) {
g_buf[0] = '\'';
r = mkpath(path, dents[cur].name, g_buf + 1, PATH_MAX);
/* Keep the copy buf in sync */
copybufpos = 0;
appendfpath(g_buf + 1, r);

g_buf[r] = '\'';
g_buf[r + 1] = '\0';

@@ -2987,6 +2991,10 @@ nochange:
printmsg(g_buf + 1);
} else {
r = mkpath(path, dents[cur].name, newpath, PATH_MAX);
/* Keep the copy buf in sync */
copybufpos = 0;
appendfpath(newpath, r);

if (!copier)
writecp(newpath, r - 1); /* Truncate NULL from end */
else


불러오는 중...
취소
저장