From: Arun Prakash Jana Date: Fri, 21 May 2021 02:35:44 +0000 (+0530) Subject: Suppress session open failure msg in picker mode X-Git-Tag: v4.1~34 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=88f71ff35d421d5b6610946f2b1b84a0eaa0d4e0;p=nnn.git Suppress session open failure msg in picker mode --- diff --git a/src/nnn.c b/src/nnn.c index bc5d44b7..f19bc835 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -3918,7 +3918,7 @@ static bool load_session(const char *sname, char **path, char **lastdir, char ** session_header_t header; FILE *fsession; bool has_loaded_dynamically = !(sname || restore); - bool status = FALSE; + bool status = (sname && g_state.picker); /* Picker mode with session program option */ char ssnpath[PATH_MAX]; char spath[PATH_MAX]; @@ -3942,11 +3942,15 @@ static bool load_session(const char *sname, char **path, char **lastdir, char ** fsession = fopen(spath, "rb"); if (!fsession) { - printmsg(messages[MSG_SEL_MISSING]); - xdelay(XDELAY_INTERVAL_MS); + if (!status) { + printmsg(messages[MSG_SEL_MISSING]); + xdelay(XDELAY_INTERVAL_MS); + } return FALSE; } + status = FALSE; + if ((fread(&header, sizeof(header), 1, fsession) != 1) || (header.ver != SESSIONS_VERSION) || (fread(&cfg, sizeof(cfg), 1, fsession) != 1))