[Pkg-privacy-commits] [libgsecuredelete] 79/168: Rename AsyncOperation.build_environ() to AsyncOperation.build_env()

Ulrike Uhlig u-guest at moszumanska.debian.org
Thu Jul 7 20:06:41 UTC 2016


This is an automated email from the git hooks/post-receive script.

u-guest pushed a commit to branch master
in repository libgsecuredelete.

commit 10dab445a6c36139bfe1ca9b78c70aa67ea1928d
Author: Colomban Wendling <ban at herbesfolles.org>
Date:   Sat Apr 30 04:29:32 2011 +0200

    Rename AsyncOperation.build_environ() to AsyncOperation.build_env()
---
 gsecuredelete/gsd-async-operation.vala | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gsecuredelete/gsd-async-operation.vala b/gsecuredelete/gsd-async-operation.vala
index 4c4b321..cabd566 100644
--- a/gsecuredelete/gsd-async-operation.vala
+++ b/gsecuredelete/gsd-async-operation.vala
@@ -61,7 +61,7 @@ namespace Gsd
    * set it since it must be set before calling run() or run_sync() - or getting
    * it).
    * This said, you may want to override get_max_progress() and get_progress()
-   * to add actual progress support; and build_environ() to provide a specific
+   * to add actual progress support; and build_env() to provide a specific
    * environment to your command.
    * 
    * =Important note=
@@ -204,7 +204,7 @@ namespace Gsd
     }
     
     /* builds the command's environment */
-    protected virtual string?[]? build_environ ()
+    protected virtual string?[]? build_env ()
     {
       return null;
     }
@@ -366,7 +366,7 @@ namespace Gsd
         this.n_passes = this.get_max_progress ();
         this.passes = 0;
         success = Process.spawn_async_with_pipes (
-          working_directory, this.do_build_args (), this.build_environ (),
+          working_directory, this.do_build_args (), this.build_env (),
           spawn_flags | SpawnFlags.DO_NOT_REAP_CHILD, null,
           out this.pid, out this.fd_in, out this.fd_out, out this.fd_err
         );
@@ -418,7 +418,7 @@ namespace Gsd
       return_val_if_fail (! busy, false);
       try {
         success = Process.spawn_sync (working_directory, this.do_build_args (),
-                                      this.build_environ (), spawn_flags, null,
+                                      this.build_env (), spawn_flags, null,
                                       out standard_output, out error_output,
                                       out exit_status);
         if (success) {

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-privacy/packages/libgsecuredelete.git



More information about the Pkg-privacy-commits mailing list