| Server IP : 82.208.35.60 / Your IP : 216.73.216.238 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/comms/lrzsz/files/ |
Upload File : |
--- src/lrz.c.orig 1998-12-30 07:49:24 UTC
+++ src/lrz.c
@@ -494,6 +494,8 @@ main(int argc, char *argv[])
usage(2,_("garbage on commandline"));
if (protocol!=ZM_XMODEM && npats)
usage(2, _("garbage on commandline"));
+ if (protocol==ZM_XMODEM && !npats)
+ usage(2, _("need a file name to receive"));
if (Restricted && allow_remote_commands) {
allow_remote_commands=FALSE;
}
@@ -1159,9 +1161,9 @@ procheader(char *name, struct zm_fileinf
nameend = name + 1 + strlen(name);
if (*nameend) { /* file coming from Unix or DOS system */
- long modtime;
- long bytes_total;
- int mode;
+ long modtime=0;
+ long bytes_total=DEFBYTL;
+ int mode=0;
sscanf(nameend, "%ld%lo%o", &bytes_total, &modtime, &mode);
zi->modtime=modtime;
zi->bytes_total=bytes_total;