mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 20:01:27 +00:00
Support same dir tmp and nnncp files
This commit is contained in:
parent
18ea909a12
commit
dbd1db72fe
25
nnn.c
25
nnn.c
|
@ -106,13 +106,18 @@ enabledbg()
|
||||||
FILE *fp = fopen("/tmp/nnn_debug", "w");
|
FILE *fp = fopen("/tmp/nnn_debug", "w");
|
||||||
|
|
||||||
if (!fp) {
|
if (!fp) {
|
||||||
fprintf(stderr, "Cannot open debug file\n");
|
fprintf(stderr, "debug: open failed! (1)\n");
|
||||||
return -1;
|
|
||||||
|
fp = fopen("./nnn_debug", "w");
|
||||||
|
if (!fp) {
|
||||||
|
fprintf(stderr, "debug: open failed! (2)\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DEBUG_FD = fileno(fp);
|
DEBUG_FD = fileno(fp);
|
||||||
if (DEBUG_FD == -1) {
|
if (DEBUG_FD == -1) {
|
||||||
fprintf(stderr, "Cannot open debug file descriptor\n");
|
fprintf(stderr, "debug: open fd failed!\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -603,11 +608,21 @@ writecp(const char *buf, const size_t buflen)
|
||||||
{
|
{
|
||||||
FILE *fp = fopen(g_cppath, "w");
|
FILE *fp = fopen(g_cppath, "w");
|
||||||
|
|
||||||
|
if (!fp) {
|
||||||
|
struct passwd *pass = getpwuid(getuid());
|
||||||
|
|
||||||
|
xstrlcpy(g_cppath, "./nnncp", 11);
|
||||||
|
xstrlcpy(g_cppath + 10, pass->pw_name, 33);
|
||||||
|
|
||||||
|
fp = fopen(g_cppath, "w");
|
||||||
|
if (!fp)
|
||||||
|
printwarn();
|
||||||
|
}
|
||||||
|
|
||||||
if (fp) {
|
if (fp) {
|
||||||
fwrite(buf, 1, buflen, fp);
|
fwrite(buf, 1, buflen, fp);
|
||||||
fclose(fp);
|
fclose(fp);
|
||||||
} else
|
}
|
||||||
printwarn();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool
|
static bool
|
||||||
|
|
Loading…
Reference in a new issue