Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Commits
8acc272e
Commit
8acc272e
authored
Jan 27, 2008
by
rswindell
Browse files
If the file is offline, and sysop, print the full file path.
parent
b0edda4c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
src/sbbs3/file.cpp
src/sbbs3/file.cpp
+5
-2
No files found.
src/sbbs3/file.cpp
View file @
8acc272e
...
...
@@ -8,7 +8,7 @@
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright 200
5
Rob Swindell - http://www.synchro.net/copyright.html *
* Copyright 200
8
Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
...
...
@@ -91,8 +91,11 @@ void sbbs_t::fileinfo(file_t* f)
CRLF
;
putmsg
(
ext
,
P_NOATCODES
);
CRLF
;
}
if
(
f
->
size
==-
1L
)
if
(
f
->
size
==-
1L
)
{
bprintf
(
text
[
FileIsNotOnline
],
f
->
name
);
if
(
SYSOP
)
bprintf
(
"%s
\r\n
"
,
fpath
);
}
if
(
f
->
opencount
)
bprintf
(
text
[
FileIsOpen
],
f
->
opencount
,
f
->
opencount
>
1
?
"s"
:
nulstr
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment