summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTilman Sauerbeck <tilman@code-monkey.de>2006-04-14 10:06:11 +0200
committerTilman Sauerbeck <tilman@code-monkey.de>2006-04-14 10:06:11 +0200
commit5401bd4576520efbe50d5f6eda4cc70788823879 (patch)
treed553ede90ee854f52af14b5bb05259ff6e8c588a
parente55714dd079a329c915776594a06a71252c20474 (diff)
downloadpkgutils-5401bd4576520efbe50d5f6eda4cc70788823879.tar.gz
pkgutils-5401bd4576520efbe50d5f6eda4cc70788823879.tar.xz
use the proper sentinel in the execl() call
-rw-r--r--ChangeLog1
-rw-r--r--pkgutil.cc2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index cdd6f1cc..47361a80 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,4 @@
2006-04-14 Tilman Sauerbeck (tilman at crux nu)
* ChangeLog, NEWS: Moved old ChangeLog to NEWS
* pkgmk.in: Write warnings and errors to stderr instead of stdout
+ * pkgutil.cc: Use the proper sentinel in the execl() call
diff --git a/pkgutil.cc b/pkgutil.cc
index 571dd6eb..9b41c5c1 100644
--- a/pkgutil.cc
+++ b/pkgutil.cc
@@ -435,7 +435,7 @@ void pkgutil::ldconfig() const
throw runtime_error_with_errno("fork() failed");
if (pid == 0) {
- execl(LDCONFIG, LDCONFIG, "-r", root.c_str(), 0);
+ execl(LDCONFIG, LDCONFIG, "-r", root.c_str(), (char *) 0);
const char* msg = strerror(errno);
cerr << utilname << ": could not execute " << LDCONFIG << ": " << msg << endl;
exit(EXIT_FAILURE);

Generated by cgit