ALT Linux Sisyphus discussions
 help / color / mirror / Atom feed
From: "Alexei V. Mezin" <alex783@4ka.mipt.ru>
To: sssku@online.ru, sisyphus@altlinux.ru
Subject: Re: [sisyphus] LinNeighborhood
Date: Fri, 03 Oct 2003 00:09:46 +0400
Message-ID: <3F7C860A.2060902@4ka.mipt.ru> (raw)
In-Reply-To: <20031002235524.4c5eb011.sssku@online.ru>

Sergey S. Skulachenko wrote:

>И с samba3-client-3.0-alt41 тоже не работает. С теми же внешними
>признаками: диски уделенной машины видны (в том числе те, к
>которым не давался! доступ - при нормальной работе такого не
>наблюдалось), но не монтируются.
>Жаль, что есть дела поважней. Всё-таки это удобная программа,
>когда ни от Самбы ни от Виндов почти ничего не надо.
>  
>
Обещали починить тогда, когда из Сизифа окончательно уберут samba-2.x. 
Пока можно приделать "костыль" к LinN в виде вот такого патча (и 
выставить в настройках LinN параметр "-E" для smbclient).

--- ../src/smbbrowse.c    2002-06-09 11:58:43 +0400
+++ ../src/smbbrowse.c    2003-09-20 17:18:37 +0400
@@ -465,7 +465,7 @@
           if (browsedat->childpid ==0) 
           {
            close(browsedat->fd[0]);  
-           dup2(browsedat->fd[1],STDOUT_FILENO);
+           dup2(browsedat->fd[1],STDERR_FILENO);
           
            cArg[argcount++] = "smbclient";
            cArg[argcount++] = "-L";
@@ -617,7 +617,7 @@
           if (browsedat->childpid == 0) 
           {
            close(browsedat->fd[0]);  
-           dup2(browsedat->fd[1],STDOUT_FILENO);
+           dup2(browsedat->fd[1],STDERR_FILENO);
           
            cArg[argcount++] = "smbclient";
            cArg[argcount++] = "-L";
@@ -749,7 +749,7 @@
     if (!browsedat->childpid) 
     {
      close(browsedat->fd[0]);  
-     dup2(browsedat->fd[1],STDOUT_FILENO);
+     dup2(browsedat->fd[1],STDERR_FILENO);
     
      cArg[argcount++] = "smbclient";
      cArg[argcount++] = "-L";
@@ -826,7 +826,7 @@
     if (!browsedat->childpid)
     {
      close(browsedat->fd[0]);  
-     dup2(browsedat->fd[1],STDOUT_FILENO);
+     dup2(browsedat->fd[1],STDERR_FILENO);
     
      cArg[argcount++] = "nmblookup";
      if ( *wins_name )
@@ -1049,7 +1049,7 @@
   if (!browsedat->childpid)
   {
    close(browsedat->fd[0]);  
-   dup2(browsedat->fd[1],STDOUT_FILENO);
+   dup2(browsedat->fd[1],STDERR_FILENO);
   
    cArg[argcount++] = "smbclient";
    cArg[argcount++] = "-L";
@@ -1124,7 +1124,7 @@
 {
   int  linec;
   char *posi1,*posi2,*posi3;
-  char connectstr[]="Connecting to";
+  char connectstr[]="  Connecting to";
   SHARECOMMENTTYPE_STRUCT  *sharecommenttype;
   GSList *sharecommenttypelist;
   char share_str[5];
@@ -1315,7 +1315,7 @@
   if (!browsedat->childpid)
   {
    close(browsedat->fd[0]);  
-   dup2(browsedat->fd[1],STDOUT_FILENO);
+   dup2(browsedat->fd[1],STDERR_FILENO);
    execvp(pref_get_smbclient_exe(),argv);
    _exit(0);
   }
@@ -1475,7 +1475,7 @@
   if (!lookupdat->childpid)
   {
    close(fd[0]);  
-   dup2(fd[1],STDOUT_FILENO);
+   dup2(fd[1],STDERR_FILENO);
   
    cArg[argcount++] = "nmblookup";
    if ( *wins_name )
@@ -1666,7 +1666,7 @@
   if (!lookupdat->childpid)
   {
    close(fd[0]);  
-   dup2(fd[1],STDOUT_FILENO);
+   dup2(fd[1],STDERR_FILENO);
   
    cArg[argcount++] = "nmblookup";
    cArg[argcount++] = "-A";




  reply	other threads:[~2003-10-02 20:09 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-10-02 19:55 Sergey S. Skulachenko
2003-10-02 20:09 ` Alexei V. Mezin [this message]
2003-10-03  9:47   ` [sisyphus] Master, updates, MPlayer Led
2003-10-03 11:16   ` [sisyphus] Re: LinNeighborhood Michael Shigorin
2003-10-03 13:33     ` Aleksandr Blokhin
2003-10-04 16:46       ` Andrey Brindeew
2003-10-06 18:30       ` Michael Shigorin
2003-10-07  7:36         ` Aleksandr Blokhin
2003-10-07  8:10           ` Michael Shigorin
2003-10-18  8:54 ` [sisyphus] LinNeighborhood Sergey S. Skulachenko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3F7C860A.2060902@4ka.mipt.ru \
    --to=alex783@4ka.mipt.ru \
    --cc=sisyphus@altlinux.ru \
    --cc=sssku@online.ru \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Sisyphus discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/sisyphus/0 sisyphus/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 sisyphus sisyphus/ http://lore.altlinux.org/sisyphus \
		sisyphus@altlinux.ru sisyphus@altlinux.org sisyphus@lists.altlinux.org sisyphus@lists.altlinux.ru sisyphus@lists.altlinux.com sisyphus@linuxteam.iplabs.ru sisyphus@list.linux-os.ru
	public-inbox-index sisyphus

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.sisyphus


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git