Displaying 20 results from an estimated 200 matches similar to: "[PATCH 1/2] cat cleanup ugly ifdefery"
2006 Dec 18
2
[PATCH] Fix for dovecotpw on powerpc and other architectures
Hi, please apply the following patch to dovecotpw. Without this, it
will be unusable on powerpc and (maybe) other architectures where
the char is unsigned by default.
--- dovecot-1.0/src/util/dovecotpw.c (revisione 2066)
+++ dovecot-1.0.new/src/util/dovecotpw.c (copia locale)
@@ -40,7 +40,7 @@
const char *user = NULL;
char *scheme = NULL;
char *plaintext = NULL;
- char ch;
+
2019 Jan 25
0
[klibc:update-dash] input: Move all input state into parsefile
Commit-ID: a61f802e418cd4cf282ccdb60229335e0c09f3bf
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=a61f802e418cd4cf282ccdb60229335e0c09f3bf
Author: Herbert Xu <herbert at gondor.apana.org.au>
AuthorDate: Mon, 5 Jan 2015 22:42:32 +1100
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Fri, 25 Jan 2019 02:57:21 +0000
[klibc] input: Move all input
2020 Mar 28
0
[klibc:update-dash] dash: input: Move all input state into parsefile
Commit-ID: 7976a4e8b6d3adc72d9a07f37a8f470f7345c6db
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=7976a4e8b6d3adc72d9a07f37a8f470f7345c6db
Author: Herbert Xu <herbert at gondor.apana.org.au>
AuthorDate: Mon, 5 Jan 2015 22:42:32 +1100
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 28 Mar 2020 21:42:54 +0000
[klibc] dash: input: Move all
2003 Aug 13
1
Errors Building 4.8
I have been trying to build the latest 4.8 Stable on a 4.8 Stable system mainly
go get the latest fixes, but on "make buildworld" I keep getting the same
problem for the past few days.
I've even completely removed /usr/src and /usr/obj (ok I backed it up) and
re-cvsuped the code and started a-new. I attached the complete "make buildworld"
from after that.
Anyone have
2002 Feb 19
2
Dump Analysis -- when NCR server frozen by rsync
Hi,
rsync was running against filesystems /disk5 and /disk7 to back them onto
remote server (172.16.101.4) using the following script:
if [ `ps -ef | grep -v grep | grep ::d5 | /usr/bin/wc -l` -eq 0 ]
then
rm -f /etc/rsync5.log
echo " --- Disk5 --- starts `date`" > /etc/rsync5.log
/usr/local/bin/rsync -a --recursive --compress /disk5/ 172.16.101.4::d5 >>
/etc/rsync.log
echo
2011 Jul 08
1
[PATCH] [SHELL] Fix klibc DEBUG compilation v3
dash didn't compile in DEBUG mode against klibc for all long time.
Now it only fails at link stage for not having setlinebuf(3) and
freopen(3).
Fixes:
usr/dash/show.o: In function `opentrace':
show.c:(.text+0x36): undefined reference to `freopen'
show.c:(.text+0x86): undefined reference to `setlinebuf'
Skip setlinebuf and use fclose/fopen inside __KLIBC__
Compile tested with
2012 Jul 02
0
[klibc:master] [SHELL] Fix klibc DEBUG compilation
Commit-ID: cebb8fc25475486605d12e25a3040ccacceede74
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=cebb8fc25475486605d12e25a3040ccacceede74
Author: maximilian attems <max at stro.at>
AuthorDate: Fri, 15 Jul 2011 11:18:13 +0800
Committer: maximilian attems <max at stro.at>
CommitDate: Mon, 2 Jul 2012 10:45:52 +0200
[klibc] [SHELL] Fix klibc DEBUG compilation
2020 Mar 28
0
[klibc:update-dash] dash: eval: Replace with listsetvar with mklocal/setvareq
Commit-ID: cbf6b9e61bc7e49b8863901ef0bf85483af5861f
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=cbf6b9e61bc7e49b8863901ef0bf85483af5861f
Author: Herbert Xu <herbert at gondor.apana.org.au>
AuthorDate: Sat, 19 May 2018 02:39:55 +0800
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 28 Mar 2020 21:42:55 +0000
[klibc] dash: eval: Replace
2006 Feb 28
1
this feels ugly
i better explain a little to get started.
in my form for creating a Person, there''s a Company field. People
belong to companies and companies have many people.
in my person form i have:
<%= text_field ''person'', ''Company'' %>
in my controller i have
def create
params[''person''][''Company''] =
2007 Apr 18
0
[PATCH 3/12] tls-is-ugly
Got too many complaints that this code is ugly. It is. Fix it.
Signed-off-by: Zachary Amsden <zach@vmware.com>
Index: linux-2.6.13/include/asm-i386/desc.h
===================================================================
--- linux-2.6.13.orig/include/asm-i386/desc.h 2005-08-08 14:12:48.000000000 -0700
+++ linux-2.6.13/include/asm-i386/desc.h 2005-08-08 14:53:11.000000000 -0700
@@
2007 Apr 18
0
[PATCH 2/14] i386 / Remove ugly tls code
Got too many complaints that this code is ugly. It is. Fix it.
Patch-base: 2.6.13-rc5-mm1
Patch-keys: i386 desc cleanup
Signed-off-by: Zachary Amsden <zach@vmware.com>
Index: linux-2.6.13/include/asm-i386/mach-default/mach_desc.h
===================================================================
--- linux-2.6.13.orig/include/asm-i386/mach-default/mach_desc.h 2005-08-09 18:37:58.000000000
2006 Dec 03
1
Ugly code
I have a Product related to sizes by way of has_and_belongs_to_many.
Currently in my product form partial, I have this really ugly (although
functional) code. Note the hanging ">" that closes the "<input>".
<p><label for="sizes">Sizes</label><br/>
<% for size in @sizes %>
<input type="checkbox"
2007 May 20
1
Capistrano symlink problem - with ugly hack!
I''m trying to use capistrano (v1.99.0) for the first time (on dreamhost, if
that matters) and the deploy:symlink task is creating an unusable symlink.
ln -nsf deploy_dir/releases/20070520055816/ deploy_dir/current
appears to work, but "ls -al deploy_dir/current/" yields "No such file or
directory"
However, if I cd into deploy_dir and then do
ln -nsf
2007 Apr 18
0
[PATCH 3/12] tls-is-ugly
Got too many complaints that this code is ugly. It is. Fix it.
Signed-off-by: Zachary Amsden <zach@vmware.com>
Index: linux-2.6.13/include/asm-i386/desc.h
===================================================================
--- linux-2.6.13.orig/include/asm-i386/desc.h 2005-08-08 14:12:48.000000000 -0700
+++ linux-2.6.13/include/asm-i386/desc.h 2005-08-08 14:53:11.000000000 -0700
@@
2007 Apr 18
0
[PATCH 2/14] i386 / Remove ugly tls code
Got too many complaints that this code is ugly. It is. Fix it.
Patch-base: 2.6.13-rc5-mm1
Patch-keys: i386 desc cleanup
Signed-off-by: Zachary Amsden <zach@vmware.com>
Index: linux-2.6.13/include/asm-i386/mach-default/mach_desc.h
===================================================================
--- linux-2.6.13.orig/include/asm-i386/mach-default/mach_desc.h 2005-08-09 18:37:58.000000000
2004 Jul 20
1
[Bug 900] challenge-response prompt is ugly
http://bugzilla.mindrot.org/show_bug.cgi?id=900
Summary: challenge-response prompt is ugly
Product: Portable OpenSSH
Version: 3.8.1p1
Platform: All
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: ssh
AssignedTo: openssh-bugs at mindrot.org
ReportedBy: peak at
2004 Jun 07
0
SIP registration issues - Ugly workaround
Hello everyone,
I'm currently attempting to get Asterisk properly registering through a NAT
proxy.
Here's the twist, the provider does not permit direct SIP messages to the
sip registry, instead they want registration to be done by their nat
traversal proxy, and when you send-out the registration messages to the nat
traversal, they must be sent as if they were originally sent directly to
2005 Nov 08
1
ugly fonts problem
I use wine from time to time, but I don't know how to deal with "ugly
font problem".
What I mean, fonts in Windows applications look really bad:
http://wpkg.org/uglyfonts.png
Is it possible to have "normal" fonts?
If so, how?
--
Tomek
http://wpkg.org
WPKG - software deployment and upgrades with Samba
2008 Feb 20
0
appdb feature request: hide the ugly urls
Remco wrote:
> That's relatively easy to do with mod_rewrite. But it would have to be something like:
>
> http://appdb.winehq.org/app/128/adobe-premiere.html
>
> All the info is still in the URL (which mod_rewrite can extract), but it does look less scary.
>
> Remco
No, you can use a rewrite map to do that. Take a look at
2008 Jun 29
1
Ugly screen in City of Heroes and mouse problem
is there a tweak for coh for a nasty looking screen? my mouse and all my power buttons appear as a big square.
the screen appears like it is missing every second line of graphics.
I am running ubuntu 7.10, on a dell xps genII
2 gig intel processor
2 gig ram
nvidia 6800 ultra 256m on board
glx framerate is average 12,000fps
vid is set to 1024x768
wine ver is 0.9.46
I cant use wine ver 1 unless