summaryrefslogtreecommitdiff
path: root/dselect
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2009-11-06 23:03:01 +0100
committerGuillem Jover <guillem@debian.org>2009-11-07 18:15:00 +0100
commitf5c904d58627ec1422173a596f2a2ef8584485c2 (patch)
tree2f6852741c777338fcea5890cf164044a445f61b /dselect
parent61e353f65b60cc5d58fc883ac150f90de244dfd2 (diff)
downloaddpkg-f5c904d58627ec1422173a596f2a2ef8584485c2.tar.gz
libdpkg: Rename and namespace subproc related functions
Diffstat (limited to 'dselect')
-rw-r--r--dselect/method.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/dselect/method.cc b/dselect/method.cc
index 767473236..4f1c8b1f5 100644
--- a/dselect/method.cc
+++ b/dselect/method.cc
@@ -143,10 +143,10 @@ urqresult falliblesubprocess(const char *exepath, const char *name,
cursesoff();
- setup_subproc_signals(name);
+ subproc_signals_setup(name);
if (!(c1= m_fork())) {
- cu_subproc_signals(0, 0);
+ subproc_signals_cleanup(0, 0);
execvp(exepath,(char* const*) args);
ohshite(_("unable to run %.250s process `%.250s'"),name,exepath);
}