Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dCache
cta
Commits
2a0190af
Commit
2a0190af
authored
Dec 12, 2017
by
Michael Davis
Browse files
[xrd_ssi] Removes debug message from OStreamBuffer class
parent
3b920963
Changes
3
Hide whitespace changes
Inline
Side-by-side
cmdline/CMakeLists.txt
View file @
2a0190af
...
...
@@ -21,9 +21,9 @@ find_package (cryptopp REQUIRED)
find_package
(
xrootdclient REQUIRED
)
include_directories
(
${
XROOTD_INCLUDE_DIR
}
${
CMAKE_SOURCE_DIR
}
)
add_executable
(
cta CTACmdMain.cpp Configuration.cpp
)
target_link_libraries
(
cta
${
XROOTD_XRDCL_LIB
}
cryptopp
)
install
(
TARGETS cta DESTINATION usr/bin
)
add_executable
(
cta
.deprecated
CTACmdMain.cpp Configuration.cpp
)
target_link_libraries
(
cta
.deprecated
${
XROOTD_XRDCL_LIB
}
cryptopp
)
install
(
TARGETS cta
.deprecated
DESTINATION usr/bin
)
INSTALL
(
FILES cta-cli.conf DESTINATION
${
CMAKE_INSTALL_SYSCONFDIR
}
/cta
)
include_directories
(
${
CMAKE_SOURCE_DIR
}
/tapeserver/
)
...
...
cta.spec.in
View file @
2a0190af
...
...
@@ -112,7 +112,7 @@ CERN Tape Archive:
The xroot plugin
%files -n cta-cli
%defattr(-,root,root)
%attr(0755,root,root) %{_bindir}/cta
%attr(0755,root,root) %{_bindir}/cta
.deprecated
%attr(0755,root,root) %{_bindir}/cta-admin
%attr(0755,root,root) %{_bindir}/eoscta_stub
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/cta/cta-cli.conf
...
...
xroot_ssi_pb/XrdSsiPbOStreamBuffer.hpp
View file @
2a0190af
...
...
@@ -99,7 +99,9 @@ private:
* Called by the XrdSsi framework when it is finished with the object
*/
virtual
void
Recycle
()
{
#ifdef XRDSSI_DEBUG
std
::
cerr
<<
"[DEBUG] OStreamBuffer::Recycle()"
<<
std
::
endl
;
#endif
delete
this
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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