소스 검색

* Fixed a cosmetic error in USERENTRY_MODIFIED

svn: 355
Bryan Drewery 22 년 전
부모
커밋
993be87ae3
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/userent.c

+ 2 - 2
src/userent.c

@@ -695,9 +695,9 @@ void modified_display(int idx, struct user_entry *e, struct userrec *u)
     tm = atoi(tmp);
     strftime(tmp2, sizeof(tmp2), "%a, %d %b %Y %H:%M:%S GMT", gmtime(&tm));
     if (hnd)
-      dprintf(idx, " -- Modified %s by %s\n", tmp2, hnd);
+      dprintf(idx, "  -- Modified %s by %s\n", tmp2, hnd);
     else
-      dprintf(idx, " -- Modified %s\n", tmp2);
+      dprintf(idx, "  -- Modified %s\n", tmp2);
   }
 }